summaryrefslogtreecommitdiff
path: root/lib/custodian/testfactory.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/custodian/testfactory.rb')
-rw-r--r--lib/custodian/testfactory.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/custodian/testfactory.rb b/lib/custodian/testfactory.rb
index 29d1f99..0f5a30d 100644
--- a/lib/custodian/testfactory.rb
+++ b/lib/custodian/testfactory.rb
@@ -15,6 +15,18 @@ module Custodian
TEST_PASSED = 2
TEST_FAILED = 4
TEST_SKIPPED = 8
+
+
+ #
+ # Allow one of our symbols to be converted back
+ #
+ def self.to_str(status)
+ for sym in self.constants
+ if self.const_get(sym) == status
+ return sym.to_s
+ end
+ end
+ end
end