blob: b11102010a340d7c8b8cdbc05ef0f75213e41eb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# 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
|