Sha256: 8777fe89ede178b2c1a7111643f4de83d28248919af2f71141a1753d9308f111

Contents?: true

Size: 467 Bytes

Versions: 1

Compression:

Stored size: 467 Bytes

Contents

require 'rspec'
require 'blueprints_boy'

ROOT = Pathname.new('../../').expand_path(__FILE__)

require_relative 'support/fixtures'

RSpec.configure do |config|
  config.include Fixtures

  config.after do
    BlueprintsBoy.instance_eval do
      @manager = nil
      @config = nil
      @factories = nil
    end
  end

  config.expect_with :rspec do |c|
    c.syntax = :should, :expect
  end
  config.mock_with :rspec do |c|
    c.syntax = :should, :expect
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
blueprints_boy-1.0.0 spec/spec_helper.rb