diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-04-16 16:36:44 +0100 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-04-16 16:36:44 +0100 |
commit | e39d621fb414cf9ee95dabbe7c837e96cee65ea5 (patch) | |
tree | 5e9501419a2e20cf9a63bd8de0dbc8561ec0ca1e /lib | |
parent | 8c2cf44335c4a2b16877454fa48f995c03b7f324 (diff) |
Test our enum-like type works as expected.
Specifically that we can get the value back as a string, and
work with the ordinal too.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/custodian/testfactory.rb | 12 |
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 |