X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/8cd02f413690abfb499e02a5824bd46c1504b86f..ed699548e64fc96289b6b04ccd5303692baafffa:/test/integration/user_diaries_test.rb diff --git a/test/integration/user_diaries_test.rb b/test/integration/user_diaries_test.rb index b686fbac9..23687fa8e 100644 --- a/test/integration/user_diaries_test.rb +++ b/test/integration/user_diaries_test.rb @@ -11,7 +11,7 @@ class UserDiariesTest < ActionController::IntegrationTest assert_response :success assert_template 'user/login' # We can now login - post '/login', {'user[email]' => "test@openstreetmap.org", 'user[password]' => "test", :referer => '/diary/new'} + post '/login', {'username' => "test@openstreetmap.org", 'password' => "test", :referer => '/diary/new'} assert_response :redirect #print @response.body # Check that there is some payload alerting the user to the redirect @@ -38,10 +38,14 @@ class UserDiariesTest < ActionController::IntegrationTest # that need to be tested, which can't be tested in the functional tests assert_select "html:root" do assert_select "body" do - assert_select "div#content" do - assert_select "h1", "New Diary Entry" - assert_select "form[action='/diary/new']" do - assert_select "input[id=diary_entry_title]" + assert_select "div.wrapper", :count => 1 do + assert_select "div.content-heading", :count => 1 do + assert_select "h1", "New Diary Entry" + end + assert_select "div#content" do + assert_select "form[action='/diary/new']" do + assert_select "input[id=diary_entry_title]" + end end end end