module XSpec::Notifier::EmptyFormatter

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.

Public Instance Methods

evaluate_finish(*_) click to toggle source
# File lib/xspec/notifiers.rb, line 15
def evaluate_finish(*_); end
evaluate_start(*_) click to toggle source
# File lib/xspec/notifiers.rb, line 14
def evaluate_start(*_); end
run_finish(*_) click to toggle source
# File lib/xspec/notifiers.rb, line 16
def run_finish(*_); true; end
run_start(*_) click to toggle source
# File lib/xspec/notifiers.rb, line 13
def run_start(*_); end