Class: Probatio::DotReporter
- Inherits:
-
Object
- Object
- Probatio::DotReporter
- Includes:
- Colours, SeedReporter
- Defined in:
- lib/probatio/plugins.rb
Instance Method Summary collapse
Methods included from SeedReporter
Instance Method Details
#on_test_fail(ev) ⇒ Object
102 103 104 105 |
# File 'lib/probatio/plugins.rb', line 102 def on_test_fail(ev) print c.red + 'x' + c.reset end |
#on_test_pending(ev) ⇒ Object
107 108 109 110 |
# File 'lib/probatio/plugins.rb', line 107 def on_test_pending(ev) print c.yellow + '.' + c.reset end |
#on_test_succeed(ev) ⇒ Object
97 98 99 100 |
# File 'lib/probatio/plugins.rb', line 97 def on_test_succeed(ev) print c.dark_grey + '·' + c.reset end |