Browse Source

code layout clean up of "Add a user as an anonymous user should fail" at test/integration/admin_test.rb

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7495 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/1.3.0
Toshi MARUYAMA 12 years ago
parent
commit
a16d2c2b2d
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      test/integration/admin_test.rb

+ 3
- 1
test/integration/admin_test.rb View File

@@ -53,7 +53,9 @@ class AdminTest < ActionController::IntegrationTest
end

test "Add a user as an anonymous user should fail" do
post '/users/create', :user => { :login => 'psmith', :firstname => 'Paul'}, :password => "psmith09", :password_confirmation => "psmith09"
post '/users/create',
:user => { :login => 'psmith', :firstname => 'Paul'},
:password => "psmith09", :password_confirmation => "psmith09"
assert_response :redirect
assert_redirected_to "/login?back_url=http%3A%2F%2Fwww.example.com%2Fusers"
end

Loading…
Cancel
Save