blob: 1d5762d9e3cd31f727c34bf399f2bdcf32c314fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# frozen_string_literal: true
# Configure Rails Environment
ENV["RAILS_ENV"] = "test"
require File.expand_path("dummy/config/environment.rb", __dir__).tap { |file|
# Create the dummy app if it's still missing.
system "bin/rake extension:test_app" unless File.exist? file
}
require "solidus_dev_support/rspec/feature_helper"
# Requires supporting ruby files with custom matchers and macros, etc,
# in spec/support/ and its subdirectories.
Dir[File.join(File.dirname(__FILE__), "support/**/*.rb")].each { |f| require f }
RSpec.configure do |config|
config.infer_spec_type_from_file_location!
config.use_transactional_fixtures = false
end
|