debian-mirror-gitlab/spec/factories/airflow/dags.rb

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

9 lines
175 B
Ruby
Raw Normal View History

2023-04-23 21:23:45 +05:30
# frozen_string_literal: true
FactoryBot.define do
factory :airflow_dags, class: '::Airflow::Dags' do
sequence(:dag_name) { |n| "dag_name_#{n}" }
project
end
end