Class: XSpec::Notifier::Null
- Inherits:
-
Object
- Object
- XSpec::Notifier::Null
- Includes:
- Composable
- Defined in:
- lib/xspec/notifiers.rb
Overview
A notifier that does not do anything and always returns successful. Useful as a parent class for other notifiers or for testing.
Instance Method Summary collapse
Methods included from Composable
Instance Method Details
#evaluate_finish(*_) ⇒ Object
305 |
# File 'lib/xspec/notifiers.rb', line 305 def evaluate_finish(*_); end |
#evaluate_start(*_) ⇒ Object
304 |
# File 'lib/xspec/notifiers.rb', line 304 def evaluate_start(*_); end |
#run_finish ⇒ Object
306 |
# File 'lib/xspec/notifiers.rb', line 306 def run_finish; true; end |
#run_start ⇒ Object
303 |
# File 'lib/xspec/notifiers.rb', line 303 def run_start; end |