Files
2015-03-26 13:38:26 +02:00

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