Standardise on double quoted strings

This commit is contained in:
Tom Hughes 2015-02-20 19:42:44 +00:00
parent 5cbd4038ed
commit dc2a2c8ebd
230 changed files with 1809 additions and 1812 deletions

View 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