scinote-web/spec/factories/settings.rb
2019-06-10 12:24:04 +02:00

9 lines
210 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :settings do
type { Faker::Lorem.sentence.split(' ').sample }
values { { key_of_data: Faker::Lorem.sentence.split(' ').sample } }
end
end