Welcome to mirror list, hosted at ThFree Co, Russian Federation.

group_user_callouts.rb « users « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: de8a6d3ee774436c816c92552bb78fb6d5b7aa3a (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

FactoryBot.define do
  factory :group_callout, class: 'Users::GroupCallout' do
    feature_name { :invite_members_banner }

    user
    group
  end
end