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 | b42677d69de3dab1a55c81689cf2b3b45fd85d12 (patch) | |
tree | 3c17d871d9ba42496ff23f05522b99bd43bcb7bb /lib/custodian/protocoltest/ssh.rb | |
parent | caaa448c8826e4409d5db5398943e8c1ef54818d (diff) |
Removed duplicate member-variables for subclasses.
Allow test-inversion via "must not run".
Diffstat (limited to 'lib/custodian/protocoltest/ssh.rb')
-rw-r--r-- | lib/custodian/protocoltest/ssh.rb | 31 |
1 files changed, 11 insertions, 20 deletions
diff --git a/lib/custodian/protocoltest/ssh.rb b/lib/custodian/protocoltest/ssh.rb index 205099e..0d64911 100644 --- a/lib/custodian/protocoltest/ssh.rb +++ b/lib/custodian/protocoltest/ssh.rb @@ -17,26 +17,6 @@ module Custodian class SSHTest < TCPTest - - # - # 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 # @@ -54,6 +34,17 @@ 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 # |