Method: Example#klass
- Defined in:
- lib/test_spec/rspec/example.rb
#klass(prefix = 'label-') ⇒ Object
62 63 64 65 66 67 68 69 70 |
# File 'lib/test_spec/rspec/example.rb', line 62 def klass(prefix = 'label-') class_map = { passed: "#{prefix}success", failed: "#{prefix}danger", pending: "#{prefix}warning" } class_map[@status.to_sym] end |