]> git.openstreetmap.org Git - rails.git/blobdiff - test/integration/user_changeset_comments_test.rb
Remove the note and note_comments fixtures
[rails.git] / test / integration / user_changeset_comments_test.rb
index eb79d71833cb2165cc4861005d80a5bcafbae62c..d183e4d564e848e57a2ae313792f5fa1bc09b8e6 100644 (file)
@@ -1,4 +1,4 @@
-require 'test_helper'
+require "test_helper"
 
 class UserChangesetCommentsTest < ActionDispatch::IntegrationTest
   fixtures :users, :changesets, :changeset_comments
@@ -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