]> git.openstreetmap.org Git - rails.git/commitdiff
Fix test for viewing an unknown user to actually specify a name - what
authorTom Hughes <tom@compton.nu>
Fri, 26 Feb 2010 15:07:28 +0000 (15:07 +0000)
committerTom Hughes <tom@compton.nu>
Fri, 26 Feb 2010 15:07:28 +0000 (15:07 +0000)
it was doing before was testing whether the null user existed.

test/functional/user_controller_test.rb

index 058cab0ecda2904b39c04e1e58fef5405010d33f..f0e945e208f1eebee9f8ae934a58789c46f23e5a 100644 (file)
@@ -65,7 +65,7 @@ class UserControllerTest < ActionController::TestCase
   # 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"}