debian-mirror-gitlab/spec/factories/notification_settings.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
151 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
FactoryBot.define do
2016-08-24 12:49:21 +05:30
factory :notification_setting do
2017-09-10 17:25:29 +05:30
source factory: :project
2016-08-24 12:49:21 +05:30
user
2019-12-21 20:55:43 +05:30
level { 3 }
2016-08-24 12:49:21 +05:30
end
end