class DeepTest::Spec::WorkUnit::ResultReporter
Attributes
result[R]
Public Class Methods
new(identifier)
click to toggle source
# File lib/deep_test/spec/work_unit.rb, line 38 def initialize(identifier) @identifier = identifier end
Public Instance Methods
add_example_group(example_group)
click to toggle source
# File lib/deep_test/spec/work_unit.rb, line 42 def add_example_group(example_group); end
dump()
click to toggle source
# File lib/deep_test/spec/work_unit.rb, line 43 def dump; end
end()
click to toggle source
# File lib/deep_test/spec/work_unit.rb, line 44 def end; end
example_finished(example, error)
click to toggle source
# File lib/deep_test/spec/work_unit.rb, line 47 def example_finished(example, error) @example, @error = example, error end
example_started(name)
click to toggle source
# File lib/deep_test/spec/work_unit.rb, line 45 def example_started(name); end
start(example)
click to toggle source
# File lib/deep_test/spec/work_unit.rb, line 55 def start(example); end