Sha256: 3c9e2ce59b70af8b2a60d050dc194fecef64b9c0081d5457f83904a7e70b4529
Contents?: true
Size: 526 Bytes
Versions: 1
Compression:
Stored size: 526 Bytes
Contents
# Read about factories at https://github.com/thoughtbot/factory_girl FactoryBot.define do factory :accept do basket_id{FactoryBot.create(:basket).id} item_id{FactoryBot.create(:item).id} librarian_id{FactoryBot.create(:librarian).id} end end # == Schema Information # # Table name: accepts # # id :bigint not null, primary key # basket_id :bigint # item_id :bigint # librarian_id :bigint # created_at :datetime not null # updated_at :datetime not null #
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
enju_library-0.4.0.rc.1 | spec/factories/accepts.rb |