Sha256: bf7680f6534a1e357ecf8834c86e33276186f134843025d326b7757ca1a692e4

Contents?: true

Size: 638 Bytes

Versions: 2

Compression:

Stored size: 638 Bytes

Contents

require_relative 'support/tests/current_bundle'

Tests::CurrentBundle.instance.assert_appraisal!

#---

require 'rspec/core'
require 'pry'
require 'pry-byebug'

Dir[ File.join(File.expand_path('../support/acceptance/**/*.rb', __FILE__)) ].sort.each do |file|
  require file
end

RSpec.configure do |config|
  config.order = :random

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

  if config.respond_to?(:infer_spec_type_from_file_location!)
    config.infer_spec_type_from_file_location!
  end

  AcceptanceTests::Helpers.configure_example_group(config)

  config.include AcceptanceTests::Matchers
end

$VERBOSE = true

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
shoulda-matchers-3.0.0 spec/acceptance_spec_helper.rb
shoulda-matchers-3.0.0.rc1 spec/acceptance_spec_helper.rb