diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/custodian/testfactory.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/custodian/testfactory.rb b/lib/custodian/testfactory.rb index 7d2ab92..816c591 100644 --- a/lib/custodian/testfactory.rb +++ b/lib/custodian/testfactory.rb @@ -86,10 +86,27 @@ module Custodian + + # + # Return the target of this test. + # def target @host end + + + + # + # Return the port of this test. + # + def port + @port + end + + + + end end |