diff options
author | Matija Čupić <matteeyah@gmail.com> | 2018-01-26 17:07:35 +0100 |
---|---|---|
committer | Matija Čupić <matteeyah@gmail.com> | 2018-01-26 23:24:25 +0100 |
commit | 0dab083702ff4364bc25ea29812a4305c58e5a4f (patch) | |
tree | 655020da5c2c0266af15838a559702eb3a7aebf2 /spec/factories | |
parent | 89ea6a9931bb232bd391ff4dace6e13deb6dee0c (diff) | |
download | gitlab-ce-0dab083702ff4364bc25ea29812a4305c58e5a4f.tar.gz |
Add Callout specs
Diffstat (limited to 'spec/factories')
-rw-r--r-- | spec/factories/callouts.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/factories/callouts.rb b/spec/factories/callouts.rb new file mode 100644 index 00000000000..b8ea879933e --- /dev/null +++ b/spec/factories/callouts.rb @@ -0,0 +1,8 @@ +FactoryBot.define do + factory :callout do + feature_name 'test_callout' + dismissed_state false + + user + end +end |