Sha256: 42555b93539def8624090cd1d9a6ce477e2585d44623168bdf4a4dc10e5d066a
Contents?: true
Size: 395 Bytes
Versions: 12
Compression:
Stored size: 395 Bytes
Contents
require 'rspec/core/formatters/documentation_formatter' class DryRunFormatter < RSpec::Core::Formatters::DocumentationFormatter def initialize(output) output = File.new(File.expand_path(File.join('.', 'app', 'reports', "#{Time.now.strftime("%Y%m%d_%H%M%S")}-dry.txt")), 'w') super(output) @group_level = 0 end def example_failed(example) example_passed(example) end end
Version data entries
12 entries across 12 versions & 1 rubygems