Sha256: 8355ea90ac2eb540042946993aa16aea9d8cbcdfd489f506c1b36c748a331f5e

Contents?: true

Size: 584 Bytes

Versions: 7

Compression:

Stored size: 584 Bytes

Contents

require "bundler/setup"
require "tram/policy"
require "tram/policy/rspec"
require "rspec/its"

require_relative "support/fixtures_helper.rb"

RSpec.configure do |config|
  config.example_status_persistence_file_path = ".rspec_status"
  config.expect_with :rspec do |c|
    c.syntax = :expect
  end

  config.order = :random
  config.filter_run focus: true
  config.run_all_when_everything_filtered = true

  # Prepare the Test namespace for constants defined in specs
  config.before(:each) { Test = Class.new(Module) }
  config.after(:each)  { Object.send :remove_const, :Test }
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
tram-policy-0.3.1 spec/spec_helper.rb
tram-policy-0.3.0 spec/spec_helper.rb
tram-policy-0.2.5 spec/spec_helper.rb
tram-policy-0.2.4 spec/spec_helper.rb
tram-policy-0.2.3 spec/spec_helper.rb
tram-policy-0.2.2 spec/spec_helper.rb
tram-policy-0.2.1 spec/spec_helper.rb