]> git.openstreetmap.org Git - rails.git/blobdiff - test/functional/user_controller_test.rb
Fix test for viewing an unknown user to actually specify a name - what
[rails.git] / test / functional / user_controller_test.rb
index 5c1d6f47eb2d4743a5b80a3a149ccd7d6c2e53a1..f0e945e208f1eebee9f8ae934a58789c46f23e5a 100644 (file)
@@ -59,13 +59,13 @@ class UserControllerTest < ActionController::TestCase
     assert_response :success                                                                       
     assert_template 'new'
     assert_select "div#errorExplanation"
-    assert_select "table#loginForm > tr > td > div[class=fieldWithErrors] > input#user_email"
+    assert_select "table#signupForm > tr > td > div[class=fieldWithErrors] > input#user_email"
   end
   
   # Check that the user account page will display and contains some relevant
   # information for the user
   def test_view_user_account
-    get :view
+    get :view, {:display_name => "unknown"}
     assert_response :not_found
     
     get :view, {:display_name => "test"}