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: 1989b87a28f098da6b4e22546d220df438f9ac67 (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 SIXTY_DAYS NINETY_DAYS] }

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