##// END OF EJS Templates
Fixes test according to r4493....
Jean-Philippe Lang -
r4384:87ae744dce31
parent child
Show More
@@ -25,7 +25,7 class AdminTest < ActionController::IntegrationTest
25 get "/users/new"
25 get "/users/new"
26 assert_response :success
26 assert_response :success
27 assert_template "users/new"
27 assert_template "users/new"
28 post "/users/create", :user => { :login => "psmith", :firstname => "Paul", :lastname => "Smith", :mail => "psmith@somenet.foo", :language => "en" }, :password => "psmith09", :password_confirmation => "psmith09"
28 post "/users/create", :user => { :login => "psmith", :firstname => "Paul", :lastname => "Smith", :mail => "psmith@somenet.foo", :language => "en", :password => "psmith09", :password_confirmation => "psmith09" }
29
29
30 user = User.find_by_login("psmith")
30 user = User.find_by_login("psmith")
31 assert_kind_of User, user
31 assert_kind_of User, user
General Comments 0
You need to be logged in to leave comments. Login now