Class: ParallelTests::Cucumber::FailuresLogger
- Inherits:
-
Cucumber::Formatter::Rerun
- Object
- Cucumber::Formatter::Rerun
- ParallelTests::Cucumber::FailuresLogger
show all
- Includes:
- Io
- Defined in:
- lib/parallel_tests/cucumber/failures_logger.rb
Instance Method Summary
collapse
Methods included from Io
#lock_output, #prepare_io
Constructor Details
#initialize(runtime, path_or_io, options) ⇒ FailuresLogger
8
9
10
|
# File 'lib/parallel_tests/cucumber/failures_logger.rb', line 8
def initialize(runtime, path_or_io, options)
@io = prepare_io(path_or_io)
end
|
Instance Method Details
#after_feature(feature) ⇒ Object
12
13
14
15
16
17
18
19
20
|
# File 'lib/parallel_tests/cucumber/failures_logger.rb', line 12
def after_feature(feature)
unless @lines.empty?
lock_output do
@lines.each do |line|
@io.puts "#{feature.file}:#{line}"
end
end
end
end
|