diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:15:06 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:15:06 +0000 |
commit | e950dc3c5163f1305deffede93e77209e90ecacb (patch) | |
tree | e580fe21c6cd560ffcbb1452ccd618dc74faeefd /t/test-custodian-parser.rb | |
parent | 3acb2e1be6ddeb421efbd1b3598c1ed547d1b38b (diff) |
Do not terminate expressions with ";".
Ruby is not Perl, much as I sometimes wish it were.
Diffstat (limited to 't/test-custodian-parser.rb')
-rwxr-xr-x | t/test-custodian-parser.rb | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/t/test-custodian-parser.rb b/t/test-custodian-parser.rb index bd5205b..49416b3 100755 --- a/t/test-custodian-parser.rb +++ b/t/test-custodian-parser.rb @@ -82,7 +82,7 @@ class TestCustodianParser < Test::Unit::TestCase # 1.c. Adding a test will return an array of test-objects. - result = parser.parse_line( "smtp.bytemark.co.uk must run smtp on 25 otherwise 'failure'." ); + result = parser.parse_line( "smtp.bytemark.co.uk must run smtp on 25 otherwise 'failure'." ) assert( !result.nil? ) assert( result.kind_of? Array ) assert( result.size == 1 ) @@ -99,9 +99,9 @@ class TestCustodianParser < Test::Unit::TestCase # 2.b. Adding a test will return an array of test-objects. tmp = [] - tmp.push( "smtp.bytemark.co.uk must run ssh on 22 otherwise 'oops'." ); + tmp.push( "smtp.bytemark.co.uk must run ssh on 22 otherwise 'oops'." ) ret = parser.parse_lines( tmp ) - assert( ret.kind_of? Array ); + assert( ret.kind_of? Array ) assert( ret.size == 1 ) # @@ -121,7 +121,7 @@ smtp.bytemark.co.uk must run smtp on 25. google.com must run ping otherwise 'internet broken?'. EOF ret = parser.parse_lines( str ) - assert( ret.kind_of? Array ); + assert( ret.kind_of? Array ) assert( ret.size == 1 ) end @@ -172,8 +172,8 @@ EOF # Input text # text = [] - text.push( "FOO is kvm1.vm.bytemark.co.uk." ); - text.push( "FOO2 is kvm2.vm.bytemark.co.uk." ); + text.push( "FOO is kvm1.vm.bytemark.co.uk." ) + text.push( "FOO2 is kvm2.vm.bytemark.co.uk." ) # # Test the parser with this text @@ -203,8 +203,8 @@ EOF # Input text to parse. # text = [] - text.push( "FOO is kvm1.vm.bytemark.co.uk." ); - text.push( "FOO is kvm2.vm.bytemark.co.uk." ); + text.push( "FOO is kvm1.vm.bytemark.co.uk." ) + text.push( "FOO is kvm2.vm.bytemark.co.uk." ) # # Test the parser with this text |