Sha256: f5d534cded3ae7aee25bfc2fd6bb9dfb060a52802e8a2ad5a73b7abdec5d6c1c
Contents?: true
Size: 455 Bytes
Versions: 6
Compression:
Stored size: 455 Bytes
Contents
module Riot # Basically, the Null Object pattern; nothing is output from this reporter. class SilentReporter < Reporter # (see Riot::Reporter#pass) def pass(description, message); end # (see Riot::Reporter#fail) def fail(description, message, line, file); end # (see Riot::Reporter#error) def error(description, e); end # (see Riot::Reporter#results) def results(time_taken); end end # SilentReporter end # Riot
Version data entries
6 entries across 6 versions & 1 rubygems