diff options
author | Steve Kemp <steve@steve.org.uk> | 2012-11-23 16:03:27 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2012-11-23 16:03:27 +0000 |
commit | 5ed5667803eb44780cdbc5e4183c1f55daaf2555 (patch) | |
tree | f09f57a4138d42901b5bf694ea51f8787087bdd6 /lib/custodian/protocoltest/http.rb | |
parent | 21659bf0caab820d3c90efe3785c7521974272a8 (diff) |
Test that inverted() works for each protocol test we know about.
Diffstat (limited to 'lib/custodian/protocoltest/http.rb')
-rw-r--r-- | lib/custodian/protocoltest/http.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/custodian/protocoltest/http.rb b/lib/custodian/protocoltest/http.rb index 1b7f442..133fdaf 100644 --- a/lib/custodian/protocoltest/http.rb +++ b/lib/custodian/protocoltest/http.rb @@ -47,6 +47,15 @@ module Custodian raise ArgumentError, "The target wasn't an URL" end + # + # Is this test inverted? + # + if ( line =~ /must\s+not\s+run\s+/ ) + @inverted = true + else + @inverted = false + end + end |