mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-03 16:04:30 +00:00
21 lines
457 B
Ruby
21 lines
457 B
Ruby
# 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 '.root_domain' do
|
|
subject { described_class.root_domain }
|
|
|
|
it { is_expected.to eq('gitlab.com') }
|
|
end
|
|
|
|
describe '.canary_toggle_com_url' do
|
|
subject { described_class.canary_toggle_com_url }
|
|
|
|
it { is_expected.to eq(get_next_url) }
|
|
end
|
|
end
|