Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/gitlab/runtime_spec.rb')
-rw-r--r--spec/lib/gitlab/runtime_spec.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/spec/lib/gitlab/runtime_spec.rb b/spec/lib/gitlab/runtime_spec.rb
index fa0fad65520..01cfa91bb59 100644
--- a/spec/lib/gitlab/runtime_spec.rb
+++ b/spec/lib/gitlab/runtime_spec.rb
@@ -95,7 +95,7 @@ RSpec.describe Gitlab::Runtime, feature_category: :application_performance do
it_behaves_like "valid runtime", :puma, 3 + Gitlab::ActionCable::Config.worker_pool_size
it 'identifies as an application runtime' do
- expect(Gitlab::Runtime.application?).to be true
+ expect(described_class.application?).to be true
end
context "when ActionCable worker pool size is configured" do
@@ -133,7 +133,7 @@ RSpec.describe Gitlab::Runtime, feature_category: :application_performance do
it_behaves_like "valid runtime", :sidekiq, 5
it 'identifies as an application runtime' do
- expect(Gitlab::Runtime.application?).to be true
+ expect(described_class.application?).to be true
end
end
@@ -145,7 +145,7 @@ RSpec.describe Gitlab::Runtime, feature_category: :application_performance do
it_behaves_like "valid runtime", :console, 1
it 'does not identify as an application runtime' do
- expect(Gitlab::Runtime.application?).to be false
+ expect(described_class.application?).to be false
end
end
@@ -157,7 +157,7 @@ RSpec.describe Gitlab::Runtime, feature_category: :application_performance do
it_behaves_like "valid runtime", :test_suite, 1
it 'does not identify as an application runtime' do
- expect(Gitlab::Runtime.application?).to be false
+ expect(described_class.application?).to be false
end
end
@@ -177,7 +177,7 @@ RSpec.describe Gitlab::Runtime, feature_category: :application_performance do
it_behaves_like "valid runtime", :rails_runner, 1
it 'does not identify as an application runtime' do
- expect(Gitlab::Runtime.application?).to be false
+ expect(described_class.application?).to be false
end
end
end