summaryrefslogtreecommitdiff
path: root/t/test-http-vs-https.rb
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2015-03-09 13:19:15 +0000
committerSteve Kemp <steve@steve.org.uk>2015-03-09 13:19:15 +0000
commitaf2ee063abea8235a8cbd1448533e4f4fbc0d0af (patch)
tree969e448e2d5995f7e838a68ef1d25d54df9b8d29 /t/test-http-vs-https.rb
parentbb2ec1f07af747c69f2fd1e5b70c41b35fb069e6 (diff)
Prefer single-quotes when you don't need interpolation.
So "foo" is less good than 'foo'.
Diffstat (limited to 't/test-http-vs-https.rb')
-rwxr-xr-xt/test-http-vs-https.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/t/test-http-vs-https.rb b/t/test-http-vs-https.rb
index b320777..ab44ffc 100755
--- a/t/test-http-vs-https.rb
+++ b/t/test-http-vs-https.rb
@@ -42,13 +42,13 @@ class TestTestName < Test::Unit::TestCase
test = nil
assert_nothing_raised do
- test = Custodian::TestFactory.create( "http://example.com/ must run http." )
+ test = Custodian::TestFactory.create( 'http://example.com/ must run http.' )
end
assert( test )
assert( test.kind_of? Array )
assert( ! test.empty? )
- assert_equal( test[0].get_type, "http" )
+ assert_equal( test[0].get_type, 'http' )
end
@@ -59,13 +59,13 @@ class TestTestName < Test::Unit::TestCase
test = nil
assert_nothing_raised do
- test = Custodian::TestFactory.create( "https://example.com/ must run https." )
+ test = Custodian::TestFactory.create( 'https://example.com/ must run https.' )
end
assert( test )
assert( test.kind_of? Array )
assert( ! test.empty? )
- assert_equal( test[0].get_type, "https" )
+ assert_equal( test[0].get_type, 'https' )
end
@@ -76,19 +76,19 @@ class TestTestName < Test::Unit::TestCase
assert_raise ArgumentError do
- Custodian::TestFactory.create( "https://example.com/ must run http." )
+ Custodian::TestFactory.create( 'https://example.com/ must run http.' )
end
assert_raise ArgumentError do
- Custodian::TestFactory.create( "http://example.com/ must run https." )
+ Custodian::TestFactory.create( 'http://example.com/ must run https.' )
end
assert_nothing_raised do
- Custodian::TestFactory.create( "http://example.com/ must run http." )
+ Custodian::TestFactory.create( 'http://example.com/ must run http.' )
end
assert_nothing_raised do
- Custodian::TestFactory.create( "https://example.com/ must run https." )
+ Custodian::TestFactory.create( 'https://example.com/ must run https.' )
end
end