class Rectify::RSpec::DatabaseReporter

Constants

SQL_TO_IGNORE

Public Class Methods

enable() click to toggle source
# File lib/rectify/rspec/database_reporter/reporter.rb, line 22
def self.enable
  ::RSpec.configure do |config|
    config.reporter.register_listener(
      Reporter.new,
      :start,
      :example_started,
      :start_dump
    )
  end
end