mirror of
https://github.com/thoughtbot/factory_bot_rails.git
synced 2022-11-09 11:49:18 -05:00
13 lines
240 B
Ruby
13 lines
240 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
ENV["RAILS_ENV"] = "test"
|
||
|
|
||
|
require "factory_bot_rails"
|
||
|
require "fake_app"
|
||
|
|
||
|
RSpec.configure do |config|
|
||
|
config.run_all_when_everything_filtered = true
|
||
|
config.filter_run :focus
|
||
|
config.order = "random"
|
||
|
end
|