Repository URL to install this package:
|
Version:
1.4.11 ▾
|
require 'rspec/core/formatters/progress_formatter'
module RSpec
module Core
module Formatters
class ProgressFormatter
def example_started(example)
SpecGlobalLogger.logger << pending_color("\n=====<([ #{example.full_description} ])>=====\n")
super(example)
end
end
end
end
end