mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-16 13:14:03 +00:00
11 lines
228 B
Ruby
11 lines
228 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryGirl.define do
|
|
factory :campaign do
|
|
name 'Test Campaign'
|
|
utm_campaign 'testcampaign'
|
|
conference
|
|
end
|
|
end
|