summaryrefslogtreecommitdiff
path: root/lib/custodian/protocoltest/tcp.rb
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2012-11-23 15:46:12 +0000
committerSteve Kemp <steve@steve.org.uk>2012-11-23 15:46:12 +0000
commitb42677d69de3dab1a55c81689cf2b3b45fd85d12 (patch)
tree3c17d871d9ba42496ff23f05522b99bd43bcb7bb /lib/custodian/protocoltest/tcp.rb
parentcaaa448c8826e4409d5db5398943e8c1ef54818d (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.rb18
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
#