Class: XSpec::Notifier::Null

Inherits:
Object
  • Object
show all
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



301
# File 'lib/xspec/notifiers.rb', line 301

def evaluate_finish(*_); end

#evaluate_start(*_) ⇒ Object



300
# File 'lib/xspec/notifiers.rb', line 300

def evaluate_start(*_); end

#run_finishObject



302
# File 'lib/xspec/notifiers.rb', line 302

def run_finish; true; end

#run_startObject



299
# File 'lib/xspec/notifiers.rb', line 299

def run_start; end