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: 1be36a60a97723798fce75f27a8478b6b5ecfe85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Saas do
  describe '.canary_toggle_com_url' do
    subject { described_class.canary_toggle_com_url }

    let(:next_url) { 'https://next.gitlab.com' }

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