mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-20 18:16:45 +10:00
16 lines
328 B
Ruby
16 lines
328 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"
|
|
|
|
factory :git_hook_sample do
|
|
is_sample true
|
|
end
|
|
end
|
|
end
|