blob: 41d805adb9f1d9b3191356610b6aca9cdc84758a (
plain)
1
2
3
4
5
6
7
8
9
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Ci::RunnerNamespace do
it_behaves_like 'includes Limitable concern' do
subject { build(:ci_runner_namespace, group: create(:group, :nested), runner: create(:ci_runner, :group)) }
end
end
|