class Rspec::Rotten::Configuration
Attributes
results_file[RW]
time_to_rotten[RW]
Public Class Methods
configure() { |self| ... }
click to toggle source
# File lib/rspec/rotten/configuration.rb, line 11 def configure yield self end
register_formatter()
click to toggle source
# File lib/rspec/rotten/configuration.rb, line 15 def register_formatter RSpec.configure do |config| config.add_formatter(Rspec::Rotten::Formatters::RottenReportFormatter) end end