]> git.openstreetmap.org Git - rails.git/blobdiff - test/integration/client_application_test.rb
Fix incorrect interpolation variable
[rails.git] / test / integration / client_application_test.rb
index d4fd68a14d028c43a170db6dca7657ed73778933..9ab32ca7810f6ae3aa8687d74b3b15371d803983 100644 (file)
@@ -7,11 +7,19 @@ class ClientApplicationTest < ActionController::IntegrationTest
   # run through the procedure of creating a client application and checking
   # that it shows up on the user's account page.
   def test_create_application
-    post '/login', {'user[email]' => "test@example.com", 'user[password]' => "test", :referer => '/user/test2'}
+    get '/login'
+    assert_response :redirect
+    assert_redirected_to "controller" => "user", "action" => "login", "cookie_test" => "true"
+    follow_redirect!
+    assert_response :success
+    post '/login', {'username' => "test@example.com", 'password' => "test", :referer => '/user/test2'}
     assert_response :redirect
     follow_redirect!
     assert_response :success
     assert_template 'user/view'
+    get '/user/test2/account'
+    assert_response :success
+    assert_template 'user/account'
 
     # check that the form to allow new client application creations exists
     assert_in_body do