summaryrefslogtreecommitdiff
path: root/users/test
diff options
context:
space:
mode:
authorjessib <jessib@leap.se>2013-01-29 11:42:46 -0800
committerjessib <jessib@leap.se>2013-01-29 11:42:46 -0800
commit90b64fdffdc33f0204af6ac2e315bd4be6bc200a (patch)
tree79ef50efd43b9bdd19bbeb4872ac6beb1ba95557 /users/test
parentdac578781baf73a006cc78e29588dd1f6fdc0fd3 (diff)
Allow PUT API to update user.
Diffstat (limited to 'users/test')
-rw-r--r--users/test/integration/api/account_flow_test.rb10
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