mirror of
https://github.com/thoughtbot/factory_bot_rails.git
synced 2022-11-09 11:49:18 -05:00
13 lines
230 B
Ruby
13 lines
230 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Dummy
|
||
|
class Application < Rails::Application
|
||
|
config.eager_load = false
|
||
|
config.root = "spec/fixtures"
|
||
|
end
|
||
|
end
|
||
|
|
||
|
Rails.logger = Logger.new("/dev/null")
|
||
|
|
||
|
Rails.application.initialize!
|