mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-21 10:36:04 +10:00
12 lines
266 B
Ruby
12 lines
266 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryGirl.define do
|
|
factory :git_hook do
|
|
force_push_regex "MyString"
|
|
deny_delete_tag false
|
|
delete_branch_regex "MyString"
|
|
project
|
|
commit_message_regex "MyString"
|
|
end
|
|
end
|