2015-11-13 13:22:46 -05:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: releases
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# tag :string(255)
|
|
|
|
# description :text
|
|
|
|
# project_id :integer
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
#
|
|
|
|
|
2015-11-05 05:03:02 -05:00
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
|
|
|
|
FactoryGirl.define do
|
|
|
|
factory :release do
|
2015-11-06 09:43:59 -05:00
|
|
|
tag "v1.1.0"
|
|
|
|
description "Awesome release"
|
|
|
|
project
|
2015-11-05 05:03:02 -05:00
|
|
|
end
|
|
|
|
end
|