Sha256: 2e6cf256d3ecd70e3916cd7e5b9018ceab8f90a06951b41bec4d8276ded2cc0e
Contents?: true
Size: 471 Bytes
Versions: 14
Compression:
Stored size: 471 Bytes
Contents
require 'rspec' require 'honeybadger' # Require files in spec/support/ and its subdirectories. Dir[File.expand_path('../../spec/support/**/*.rb', __FILE__)].each {|f| require f} RSpec.configure do |c| c.mock_with :rspec c.color_enabled = true c.tty = true c.treat_symbols_as_metadata_keys_with_true_values = true c.filter_run :focus => true c.run_all_when_everything_filtered = true c.include Helpers c.after(:each) { Honeybadger.context.clear! } end
Version data entries
14 entries across 14 versions & 1 rubygems