scinote-web/spec/factories/tables.rb

9 lines
170 B
Ruby
Raw Normal View History

# frozen_string_literal: true
FactoryBot.define do
factory :table do
name { Faker::Name.unique.name }
2019-06-10 18:19:10 +08:00
contents { { some_data: 'needs to be here' } }
end
end