Sha256: 5a5a02eb1b36b755d19c1a6086bf4dcd51b6242077f472732f9c015357d5fc65
Contents?: true
Size: 707 Bytes
Versions: 51
Compression:
Stored size: 707 Bytes
Contents
module Hydra #:nodoc: module Listener #:nodoc: # Minimal output listener. Outputs all the files at the start # of testing and outputs a ./F/E per file. As well as # full error output, if any. class MinimalOutput < Hydra::Listener::Abstract # output a starting message def testing_begin(files) @output.write "Hydra Testing:\n#{files.inspect}\n" end # output a finished message def testing_end @output.write "\nHydra Completed\n" end # For each file, just output a . for a successful file, or the # Failure/Error output from the tests def file_end(file, output) @output.write output end end end end
Version data entries
51 entries across 51 versions & 8 rubygems