thoughtbot--shoulda-matchers/spec/acceptance_spec_helper.rb

24 lines
499 B
Ruby
Raw Normal View History

require 'rspec/core'
Dir[ File.join(File.expand_path('../support/acceptance/**/*.rb', __FILE__)) ].sort.each do |file|
require file
end
RSpec.configure do |config|
2014-11-06 21:16:30 +00:00
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