module Mackarel::FactoryBot

Public Instance Methods

create(what, options) click to toggle source
# File lib/mackarel/factories/factory_bot.rb, line 6
def create(what, options)
  FactoryBot.create(what, options)
end
create_list(what, number, options) click to toggle source
# File lib/mackarel/factories/factory_bot.rb, line 10
def create_list(what, number, options)
  FactoryBot.create_list(what, number, options)
end