2021-12-16 19:15:24 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe Gitlab::Saas do
|
2022-05-17 05:08:20 -04:00
|
|
|
include SaasTestHelper
|
|
|
|
|
2021-12-16 19:15:24 -05:00
|
|
|
describe '.canary_toggle_com_url' do
|
|
|
|
subject { described_class.canary_toggle_com_url }
|
|
|
|
|
2022-05-17 05:08:20 -04:00
|
|
|
it { is_expected.to eq(get_next_url) }
|
2021-12-16 19:15:24 -05:00
|
|
|
end
|
|
|
|
end
|