diff options
Diffstat (limited to 'users/test')
-rw-r--r-- | users/test/integration/api/account_flow_test.rb | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/users/test/integration/api/account_flow_test.rb b/users/test/integration/api/account_flow_test.rb index 268fb5e..b763be5 100644 --- a/users/test/integration/api/account_flow_test.rb +++ b/users/test/integration/api/account_flow_test.rb @@ -23,7 +23,7 @@ class AccountFlowTest < ActiveSupport::TestCase :password_salt => @srp.salt.to_s(16) } post 'http://api.lvh.me:3000/1/users.json', :user => @user_params - @user = User.find_by_param(@login) + @user = User.find_by_login(@login) end def teardown @@ -91,4 +91,12 @@ class AccountFlowTest < ActiveSupport::TestCase assert_nil server_auth end + test "update user" do + server_auth = @srp.authenticate(self) + test_public_key = 'asdlfkjslfdkjasd' + put "http://api.lvh.me:3000/1/users/" + @user.id + '.json', :user => {:public_key => test_public_key}, :format => :json + @user.reload + assert_equal @user.public_key, test_public_key + end + end |