Method: CI::Reporter::RSpec#spec_started

Defined in:
lib/ci/reporter/rspec.rb

#spec_started(name) ⇒ Object



45
46
47
48
49
50
# File 'lib/ci/reporter/rspec.rb', line 45

def spec_started(name)
  super
  spec = TestCase.new name
  @suite.testcases << spec
  spec.start
end