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

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

require 'spec_helper'

describe Ci::PipelineScheduleVariable do
  subject { build(:ci_pipeline_schedule_variable) }

  it { is_expected.to include_module(HasVariable) }
end