gitlab-org--gitlab-foss/spec/factories/releases.rb
Dmitriy Zaporozhets 6f15356aea
Add tests to release notes feature
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-11-06 15:43:59 +01:00

9 lines
187 B
Ruby

# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :release do
tag "v1.1.0"
description "Awesome release"
project
end
end