blob: 093988305a94be5fafdaa07548a4bf99e31694bd (
plain)
1
2
3
4
5
6
7
8
|
ROOT_PATH = File.expand_path('..', __dir__)
Dir[File.expand_path('support/**/*.rb', __dir__)].each { |f| require f }
RSpec.configure do |config|
config.run_all_when_everything_filtered = true
config.filter_run :focus
end
|