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

9 lines
170 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :table do
name { Faker::Name.unique.name }
contents { { some_data: 'needs to be here' } }
end
end