diff options
author | Azul <azul@leap.se> | 2012-11-04 21:01:27 +0100 |
---|---|---|
committer | Azul <azul@leap.se> | 2012-11-04 21:01:27 +0100 |
commit | e1fc3f4850ee73e0591bd67a92b104db4f63e4cb (patch) | |
tree | 1207ce14cb1c2551a3fda09e7c670cc97182a0f6 /users/test/integration | |
parent | c0f92bf9f481463dcaef6f4b30343130a8910a00 (diff) |
stubbing current_user the warden way
Diffstat (limited to 'users/test/integration')
-rw-r--r-- | users/test/integration/api/account_flow_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/users/test/integration/api/account_flow_test.rb b/users/test/integration/api/account_flow_test.rb index 5800d46..69e0599 100644 --- a/users/test/integration/api/account_flow_test.rb +++ b/users/test/integration/api/account_flow_test.rb @@ -4,7 +4,7 @@ class AccountFlowTest < ActionDispatch::IntegrationTest # this test wraps the api and implements the interface the ruby-srp client. def handshake(login, aa) - post "sessions", :login => login, 'A' => aa.to_s(16) + post "sessions", :login => login, 'A' => aa.to_s(16), :format => :json assert_response :success response = JSON.parse(@response.body) if response['errors'] @@ -15,7 +15,7 @@ class AccountFlowTest < ActionDispatch::IntegrationTest end def validate(m) - put "sessions/" + @login, :client_auth => m.to_s(16) + put "sessions/" + @login, :client_auth => m.to_s(16), :format => :json assert_response :success return JSON.parse(@response.body) end |