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

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

require 'spec_helper'

RSpec.describe GitlabSchema.types['ContainerExpirationPolicyOlderThanEnum'] do
  let_it_be(:expected_values) { %w[SEVEN_DAYS FOURTEEN_DAYS THIRTY_DAYS NINETY_DAYS] }

  it_behaves_like 'exposing container expiration policy option', :older_than
end