2015-02-05 20:03:32 -05:00
|
|
|
require_relative 'support/tests/current_bundle'
|
|
|
|
|
|
|
|
Tests::CurrentBundle.instance.assert_appraisal!
|
|
|
|
|
|
|
|
#---
|
|
|
|
|
2014-10-26 20:52:55 -04:00
|
|
|
require 'rspec/core'
|
2015-10-07 13:09:59 -04:00
|
|
|
|
|
|
|
require 'spec_helper'
|
2014-10-26 20:52:55 -04:00
|
|
|
|
2020-09-05 08:14:10 -04:00
|
|
|
Dir[File.join(File.expand_path('support/acceptance/**/*.rb', __dir__))].sort.each do |file|
|
2014-10-26 20:52:55 -04:00
|
|
|
require file
|
|
|
|
end
|
|
|
|
|
|
|
|
RSpec.configure do |config|
|
|
|
|
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
|