2022-01-26 12:08:38 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe Gitlab::Saas do
|
2022-07-16 23:28:13 +05:30
|
|
|
include SaasTestHelper
|
|
|
|
|
2022-01-26 12:08:38 +05:30
|
|
|
describe '.canary_toggle_com_url' do
|
|
|
|
subject { described_class.canary_toggle_com_url }
|
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
it { is_expected.to eq(get_next_url) }
|
2022-01-26 12:08:38 +05:30
|
|
|
end
|
|
|
|
end
|