diff options
author | Steve Kemp <steve@steve.org.uk> | 2012-11-23 15:46:12 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2012-11-23 15:46:12 +0000 |
commit | 19ad4dc151720b6d172e2f3dabf11cce933ba18d (patch) | |
tree | 3c17d871d9ba42496ff23f05522b99bd43bcb7bb /lib/custodian/protocoltest/tcp.rb | |
parent | cd1750251483f82cafdfb8e6a92242097b4929c4 (diff) |
Removed duplicate member-variables for subclasses.
Allow test-inversion via "must not run".
Diffstat (limited to 'lib/custodian/protocoltest/tcp.rb')
-rw-r--r-- | lib/custodian/protocoltest/tcp.rb | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/lib/custodian/protocoltest/tcp.rb b/lib/custodian/protocoltest/tcp.rb index c14f686..1aa9db4 100644 --- a/lib/custodian/protocoltest/tcp.rb +++ b/lib/custodian/protocoltest/tcp.rb @@ -23,7 +23,7 @@ module Custodian # - # The input line + # The input line from which we were constructed. # attr_reader :line @@ -41,6 +41,12 @@ module Custodian # + # Is this test inverted? + # + attr_reader :inverted + + + # # The banner to look for, may be nil. # attr_reader :banner @@ -65,6 +71,16 @@ module Custodian # @host = line.split( /\s+/)[0] + + # + # Is this test inverted? + # + if ( line =~ /must\s+not\s+run\s+/ ) + @inverted = true + else + @inverted = false + end + # # Save the port # |