15 lines
370 B
Ruby
15 lines
370 B
Ruby
# frozen_string_literal: true
|
|
|
|
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
|
module FactoryBotExtensions
|
|
def force_create(name, args = {})
|
|
v = build(name, args)
|
|
v.save(validate: false)
|
|
v
|
|
end
|
|
end
|
|
|
|
RSpec.configure do |config|
|
|
config.include FactoryBot::Syntax::Methods
|
|
config.include FactoryBotExtensions
|
|
end
|