debian-mirror-gitlab/spec/lib/gitlab/saas_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
258 B
Ruby
Raw Normal View History

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