summaryrefslogtreecommitdiff
path: root/t/test-custodian-util-dns.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-custodian-util-dns.rb
parentbb2ec1f07af747c69f2fd1e5b70c41b35fb069e6 (diff)
Prefer single-quotes when you don't need interpolation.
So "foo" is less good than 'foo'.
Diffstat (limited to 't/test-custodian-util-dns.rb')
-rwxr-xr-xt/test-custodian-util-dns.rb28
1 files changed, 14 insertions, 14 deletions
diff --git a/t/test-custodian-util-dns.rb b/t/test-custodian-util-dns.rb
index f226efe..2582d94 100755
--- a/t/test-custodian-util-dns.rb
+++ b/t/test-custodian-util-dns.rb
@@ -30,26 +30,26 @@ class TestDNSUtil < Test::Unit::TestCase
#
def test_lookup
- details = Custodian::Util::DNS.hostname_to_ip( "bytemark.co.uk" )
- assert( ( details == "2001:41c9:0:1019:81::80" ) ||
- ( details == "80.68.81.80" ) )
+ details = Custodian::Util::DNS.hostname_to_ip( 'bytemark.co.uk' )
+ assert( ( details == '2001:41c9:0:1019:81::80' ) ||
+ ( details == '80.68.81.80' ) )
- details = Custodian::Util::DNS.hostname_to_ip( "www.bytemark.co.uk" )
- assert( ( details == "2001:41c9:0:1019:81::80" ) ||
- ( details == "80.68.81.80" ) )
+ details = Custodian::Util::DNS.hostname_to_ip( 'www.bytemark.co.uk' )
+ assert( ( details == '2001:41c9:0:1019:81::80' ) ||
+ ( details == '80.68.81.80' ) )
- details = Custodian::Util::DNS.hostname_to_ip( "ipv4.steve.org.uk" )
- assert( details == "80.68.84.103" )
+ details = Custodian::Util::DNS.hostname_to_ip( 'ipv4.steve.org.uk' )
+ assert( details == '80.68.84.103' )
- details = Custodian::Util::DNS.hostname_to_ip( "ipv6.steve.org.uk" )
- assert( details == "2001:41c8:10b:103::10" )
+ details = Custodian::Util::DNS.hostname_to_ip( 'ipv6.steve.org.uk' )
+ assert( details == '2001:41c8:10b:103::10' )
#
# Failure case
#
- details = Custodian::Util::DNS.hostname_to_ip( "this.doesnot.exist" )
+ details = Custodian::Util::DNS.hostname_to_ip( 'this.doesnot.exist' )
assert( details.nil? )
end
@@ -63,19 +63,19 @@ class TestDNSUtil < Test::Unit::TestCase
#
# IPv6 lookup
#
- details = Custodian::Util::DNS.ip_to_hostname( "2001:41c9:0:1019:81::80" )
+ details = Custodian::Util::DNS.ip_to_hostname( '2001:41c9:0:1019:81::80' )
assert( details =~ /bytemark(-?hosting)?\.(com|eu|co\.uk)$/i )
#
# IPv4 lookup
#
- details = Custodian::Util::DNS.ip_to_hostname( "80.68.81.80" )
+ details = Custodian::Util::DNS.ip_to_hostname( '80.68.81.80' )
assert( details =~ /bytemark(-?hosting)?\.(com|eu|co\.uk)$/i )
#
# Bogus lookup - should return nil.
#
- details = Custodian::Util::DNS.ip_to_hostname( "800.683.853.348" )
+ details = Custodian::Util::DNS.ip_to_hostname( '800.683.853.348' )
assert( details.nil? )
end