diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:19:47 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:19:47 +0000 |
commit | e716a49dabe2c086a97e2d8b3cffe5cf369ad026 (patch) | |
tree | e7e98125f89941db4c9d0f48f2df9c410467a3d8 /t/test-http-vs-https.rb | |
parent | af2ee063abea8235a8cbd1448533e4f4fbc0d0af (diff) |
Removed spaces inside parenthesis.
Diffstat (limited to 't/test-http-vs-https.rb')
-rwxr-xr-x | t/test-http-vs-https.rb | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/t/test-http-vs-https.rb b/t/test-http-vs-https.rb index ab44ffc..8843683 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(test) + assert(test.kind_of? Array) + assert(! test.empty?) + 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(test) + assert(test.kind_of? Array) + assert(! test.empty?) + 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 |