X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/a3eb48385bcf1465339d473c0c1657e075cd507d..99ccffe4a9c0521d1202c4f0f1a37f8ef2dc0634:/test/integration/user_changeset_comments_test.rb diff --git a/test/integration/user_changeset_comments_test.rb b/test/integration/user_changeset_comments_test.rb index c984149db..5dbcaa0b4 100644 --- a/test/integration/user_changeset_comments_test.rb +++ b/test/integration/user_changeset_comments_test.rb @@ -1,13 +1,13 @@ -require 'test_helper' +require "test_helper" class UserChangesetCommentsTest < ActionDispatch::IntegrationTest - fixtures :users, :changesets, :changeset_comments + fixtures :users, :changesets # Test 'log in to comment' message for nonlogged in user def test_log_in_message get "/changeset/#{changesets(:normal_user_closed_change).id}" assert_response :success - + assert_select "div#content" do assert_select "div#sidebar" do assert_select "div#sidebar_content" do @@ -21,18 +21,18 @@ class UserChangesetCommentsTest < ActionDispatch::IntegrationTest # Test if the form is shown def test_displaying_form - get_via_redirect '/login' + get_via_redirect "/login" # We should now be at the login page assert_response :success - assert_template 'user/login' + assert_template "user/login" # We can now login - post '/login', {'username' => "test@openstreetmap.org", 'password' => "test"} + post "/login", "username" => "test@openstreetmap.org", "password" => "test" assert_response :redirect get "/changeset/#{changesets(:normal_user_closed_change).id}" - + assert_response :success - assert_template 'browse/changeset' + assert_template "browse/changeset" assert_select "div#content" do assert_select "div#sidebar" do