summaryrefslogtreecommitdiff
path: root/lib/custodian/protocoltest/ftp.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
commit19ad4dc151720b6d172e2f3dabf11cce933ba18d (patch)
tree3c17d871d9ba42496ff23f05522b99bd43bcb7bb /lib/custodian/protocoltest/ftp.rb
parentcd1750251483f82cafdfb8e6a92242097b4929c4 (diff)
Removed duplicate member-variables for subclasses.
Allow test-inversion via "must not run".
Diffstat (limited to 'lib/custodian/protocoltest/ftp.rb')
-rw-r--r--lib/custodian/protocoltest/ftp.rb30
1 files changed, 9 insertions, 21 deletions
diff --git a/lib/custodian/protocoltest/ftp.rb b/lib/custodian/protocoltest/ftp.rb
index a816bfd..25271c6 100644
--- a/lib/custodian/protocoltest/ftp.rb
+++ b/lib/custodian/protocoltest/ftp.rb
@@ -19,27 +19,6 @@ module Custodian
#
- # The line from which we were constructed.
- #
- attr_reader :line
-
-
- #
- # The host to test against.
- #
- attr_reader :host
-
-
- #
- # The port to connect to.
- #
- attr_reader :port
-
-
-
-
-
- #
# Constructor
#
def initialize( line )
@@ -58,6 +37,15 @@ module Custodian
end
#
+ # Is this test inverted?
+ #
+ if ( line =~ /must\s+not\s+run\s+/ )
+ @inverted = true
+ else
+ @inverted = false
+ end
+
+ #
# Save the port
#
if ( line =~ /on\s+([0-9]+)/ )