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,7 +1,7 @@
# coding: utf-8
require 'test_helper'
require 'geocoder_controller'
require "test_helper"
require "geocoder_controller"
class GeocoderControllerTest < ActionController::TestCase
##
@ -49,10 +49,10 @@ class GeocoderControllerTest < ActionController::TestCase
# Test identification of basic lat/lon pairs
def test_identify_latlon_basic
[
'50.06773 14.37742',
'50.06773, 14.37742',
'+50.06773 +14.37742',
'+50.06773, +14.37742'
"50.06773 14.37742",
"50.06773, 14.37742",
"+50.06773 +14.37742",
"+50.06773, +14.37742"
].each do |code|
latlon_check code, 50.06773, 14.37742
end
@ -62,10 +62,10 @@ class GeocoderControllerTest < ActionController::TestCase
# Test identification of lat/lon pairs using N/E with degrees
def test_identify_latlon_ne_d
[
'N50.06773 E14.37742',
'N50.06773, E14.37742',
'50.06773N 14.37742E',
'50.06773N, 14.37742E'
"N50.06773 E14.37742",
"N50.06773, E14.37742",
"50.06773N 14.37742E",
"50.06773N, 14.37742E"
].each do |code|
latlon_check code, 50.06773, 14.37742
end
@ -75,10 +75,10 @@ class GeocoderControllerTest < ActionController::TestCase
# Test identification of lat/lon pairs using N/W with degrees
def test_identify_latlon_nw_d
[
'N50.06773 W14.37742',
'N50.06773, W14.37742',
'50.06773N 14.37742W',
'50.06773N, 14.37742W'
"N50.06773 W14.37742",
"N50.06773, W14.37742",
"50.06773N 14.37742W",
"50.06773N, 14.37742W"
].each do |code|
latlon_check code, 50.06773, -14.37742
end
@ -88,10 +88,10 @@ class GeocoderControllerTest < ActionController::TestCase
# Test identification of lat/lon pairs using S/E with degrees
def test_identify_latlon_se_d
[
'S50.06773 E14.37742',
'S50.06773, E14.37742',
'50.06773S 14.37742E',
'50.06773S, 14.37742E'
"S50.06773 E14.37742",
"S50.06773, E14.37742",
"50.06773S 14.37742E",
"50.06773S, 14.37742E"
].each do |code|
latlon_check code, -50.06773, 14.37742
end
@ -101,10 +101,10 @@ class GeocoderControllerTest < ActionController::TestCase
# Test identification of lat/lon pairs using S/W with degrees
def test_identify_latlon_sw_d
[
'S50.06773 W14.37742',
'S50.06773, W14.37742',
'50.06773S 14.37742W',
'50.06773S, 14.37742W'
"S50.06773 W14.37742",
"S50.06773, W14.37742",
"50.06773S 14.37742W",
"50.06773S, 14.37742W"
].each do |code|
latlon_check code, -50.06773, -14.37742
end
@ -114,12 +114,12 @@ class GeocoderControllerTest < ActionController::TestCase
# Test identification of lat/lon pairs using N/E with degrees/mins
def test_identify_latlon_ne_dm
[
'N 50° 04.064 E 014° 22.645',
"N 50° 04.064 E 014° 22.645",
"N 50° 04.064' E 014° 22.645",
"N 50° 04.064', E 014° 22.645'",
'N50° 04.064 E14° 22.645',
'N 50 04.064 E 014 22.645',
'N50 4.064 E14 22.645',
"N50° 04.064 E14° 22.645",
"N 50 04.064 E 014 22.645",
"N50 4.064 E14 22.645",
"50° 04.064' N, 014° 22.645' E"
].each do |code|
latlon_check code, 50.06773, 14.37742
@ -130,12 +130,12 @@ class GeocoderControllerTest < ActionController::TestCase
# Test identification of lat/lon pairs using N/W with degrees/mins
def test_identify_latlon_nw_dm
[
'N 50° 04.064 W 014° 22.645',
"N 50° 04.064 W 014° 22.645",
"N 50° 04.064' W 014° 22.645",
"N 50° 04.064', W 014° 22.645'",
'N50° 04.064 W14° 22.645',
'N 50 04.064 W 014 22.645',
'N50 4.064 W14 22.645',
"N50° 04.064 W14° 22.645",
"N 50 04.064 W 014 22.645",
"N50 4.064 W14 22.645",
"50° 04.064' N, 014° 22.645' W"
].each do |code|
latlon_check code, 50.06773, -14.37742
@ -146,12 +146,12 @@ class GeocoderControllerTest < ActionController::TestCase
# Test identification of lat/lon pairs using S/E with degrees/mins
def test_identify_latlon_se_dm
[
'S 50° 04.064 E 014° 22.645',
"S 50° 04.064 E 014° 22.645",
"S 50° 04.064' E 014° 22.645",
"S 50° 04.064', E 014° 22.645'",
'S50° 04.064 E14° 22.645',
'S 50 04.064 E 014 22.645',
'S50 4.064 E14 22.645',
"S50° 04.064 E14° 22.645",
"S 50 04.064 E 014 22.645",
"S50 4.064 E14 22.645",
"50° 04.064' S, 014° 22.645' E"
].each do |code|
latlon_check code, -50.06773, 14.37742
@ -162,12 +162,12 @@ class GeocoderControllerTest < ActionController::TestCase
# Test identification of lat/lon pairs using S/W with degrees/mins
def test_identify_latlon_sw_dm
[
'S 50° 04.064 W 014° 22.645',
"S 50° 04.064 W 014° 22.645",
"S 50° 04.064' W 014° 22.645",
"S 50° 04.064', W 014° 22.645'",
'S50° 04.064 W14° 22.645',
'S 50 04.064 W 014 22.645',
'S50 4.064 W14 22.645',
"S50° 04.064 W14° 22.645",
"S 50 04.064 W 014 22.645",
"S50 4.064 W14 22.645",
"50° 04.064' S, 014° 22.645' W"
].each do |code|
latlon_check code, -50.06773, -14.37742
@ -181,8 +181,8 @@ class GeocoderControllerTest < ActionController::TestCase
"N 50° 4' 03.828\" E 14° 22' 38.712\"",
"N 50° 4' 03.828\", E 14° 22' 38.712\"",
"N 50° 4 03.828″, E 14° 22 38.712″",
'N50 4 03.828 E14 22 38.712',
'N50 4 03.828, E14 22 38.712',
"N50 4 03.828 E14 22 38.712",
"N50 4 03.828, E14 22 38.712",
"50°4'3.828\"N 14°22'38.712\"E"
].each do |code|
latlon_check code, 50.06773, 14.37742
@ -196,8 +196,8 @@ class GeocoderControllerTest < ActionController::TestCase
"N 50° 4' 03.828\" W 14° 22' 38.712\"",
"N 50° 4' 03.828\", W 14° 22' 38.712\"",
"N 50° 4 03.828″, W 14° 22 38.712″",
'N50 4 03.828 W14 22 38.712',
'N50 4 03.828, W14 22 38.712',
"N50 4 03.828 W14 22 38.712",
"N50 4 03.828, W14 22 38.712",
"50°4'3.828\"N 14°22'38.712\"W"
].each do |code|
latlon_check code, 50.06773, -14.37742
@ -211,8 +211,8 @@ class GeocoderControllerTest < ActionController::TestCase
"S 50° 4' 03.828\" E 14° 22' 38.712\"",
"S 50° 4' 03.828\", E 14° 22' 38.712\"",
"S 50° 4 03.828″, E 14° 22 38.712″",
'S50 4 03.828 E14 22 38.712',
'S50 4 03.828, E14 22 38.712',
"S50 4 03.828 E14 22 38.712",
"S50 4 03.828, E14 22 38.712",
"50°4'3.828\"S 14°22'38.712\"E"
].each do |code|
latlon_check code, -50.06773, 14.37742
@ -226,8 +226,8 @@ class GeocoderControllerTest < ActionController::TestCase
"S 50° 4' 03.828\" W 14° 22' 38.712\"",
"S 50° 4' 03.828\", W 14° 22' 38.712\"",
"S 50° 4 03.828″, W 14° 22 38.712″",
'S50 4 03.828 W14 22 38.712',
'S50 4 03.828, W14 22 38.712',
"S50 4 03.828 W14 22 38.712",
"S50 4 03.828, W14 22 38.712",
"50°4'3.828\"S 14°22'38.712\"W"
].each do |code|
latlon_check code, -50.06773, -14.37742
@ -238,8 +238,8 @@ class GeocoderControllerTest < ActionController::TestCase
# Test identification of US zipcodes
def test_identify_us_postcode
[
'12345',
'12345-6789'
"12345",
"12345-6789"
].each do |code|
post :search, query: code
assert_response :success
@ -252,12 +252,12 @@ class GeocoderControllerTest < ActionController::TestCase
# http://en.wikipedia.org/wiki/Postcodes_in_the_United_Kingdom
def test_identify_uk_postcode
[
'EC1A 1BB',
'W1A 1HQ',
'M1 1AA',
'B33 8TH',
'CR2 6XH',
'DN55 1PT'
"EC1A 1BB",
"W1A 1HQ",
"M1 1AA",
"B33 8TH",
"CR2 6XH",
"DN55 1PT"
].each do |code|
search_check code, %w(uk_postcode osm_nominatim)
end
@ -266,13 +266,13 @@ class GeocoderControllerTest < ActionController::TestCase
##
# Test identification of Canadian postcodes
def test_identify_ca_postcode
search_check 'A1B 2C3', %w(ca_postcode osm_nominatim)
search_check "A1B 2C3", %w(ca_postcode osm_nominatim)
end
##
# Test identification fall through to the default case
def test_identify_default
search_check 'foo bar baz', ['osm_nominatim']
search_check "foo bar baz", ["osm_nominatim"]
end
private