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

saas_spec.rb « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3be0a6c7bf08ec863b29e58bd483f08fafb1819c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

require 'fast_spec_helper'
require 'support/helpers/saas_test_helper'

RSpec.describe Gitlab::Saas, feature_category: :shared do
  include SaasTestHelper

  describe '.canary_toggle_com_url' do
    subject { described_class.canary_toggle_com_url }

    it { is_expected.to eq(get_next_url) }
  end
end