require "test_helper"
class UserTermsSeenTest < ActionDispatch::IntegrationTest
- def setup
- stub_hostip_requests
- end
-
def test_api_blocked
user = create(:user, :terms_seen => false, :terms_agreed => nil)
private
def auth_header(user, pass)
- { "HTTP_AUTHORIZATION" => format("Basic %{auth}", :auth => Base64.encode64("#{user}:#{pass}")) }
+ { "HTTP_AUTHORIZATION" => format("Basic %<auth>s", :auth => Base64.encode64("#{user}:#{pass}")) }
end
end