summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/saas_spec.rb
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