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



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_finishObject



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

def run_finish; true; end

#run_startObject



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

def run_start; end