Module: XSpec::Notifier::EmptyFormatter

Included in:
Character, ColoredDocumentation, FailuresAtEnd, Null, TimingsAtEnd
Defined in:
lib/xspec/notifiers.rb

Overview

A formatter must implement at least four methods. ‘run_start` and `run_finish` are called at the beginning and end of the full spec run respectively, while `evaluate_start` and `evaluate_finish` are called for each test. See [API docs](api.html#notifiers) for more information.

Instance Method Summary collapse

Instance Method Details

#evaluate_finish(*_) ⇒ Object



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

def evaluate_finish(*_); end

#evaluate_start(*_) ⇒ Object



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

def evaluate_start(*_); end

#run_finish(*_) ⇒ Object



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

def run_finish(*_); true; end

#run_start(*_) ⇒ Object



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

def run_start(*_); end