debian-mirror-gitlab/spec/factories/lfs_objects_projects.rb
2015-12-23 02:04:40 +05:30

20 lines
428 B
Ruby

# == Schema Information
#
# Table name: lfs_objects_projects
#
# id :integer not null, primary key
# lfs_object_id :integer not null
# project_id :integer not null
# created_at :datetime
# updated_at :datetime
#
# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :lfs_objects_project do
lfs_object
project
end
end