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/helpers/ci/runners_helper_spec.rb')
-rw-r--r--spec/helpers/ci/runners_helper_spec.rb38
1 files changed, 1 insertions, 37 deletions
diff --git a/spec/helpers/ci/runners_helper_spec.rb b/spec/helpers/ci/runners_helper_spec.rb
index febdc3bab65..583bbba1b6d 100644
--- a/spec/helpers/ci/runners_helper_spec.rb
+++ b/spec/helpers/ci/runners_helper_spec.rb
@@ -2,7 +2,7 @@
require 'spec_helper'
-RSpec.describe Ci::RunnersHelper, feature_category: :runner_fleet do
+RSpec.describe Ci::RunnersHelper, feature_category: :fleet_visibility do
let_it_be(:user) { create(:user) }
before do
@@ -46,42 +46,6 @@ RSpec.describe Ci::RunnersHelper, feature_category: :runner_fleet do
end
end
- describe '#runner_contacted_at' do
- let(:contacted_at_stored) { 1.hour.ago.change(usec: 0) }
- let(:contacted_at_cached) { 1.second.ago.change(usec: 0) }
- let(:runner) { create(:ci_runner, contacted_at: contacted_at_stored) }
-
- before do
- runner.cache_attributes(contacted_at: contacted_at_cached)
- end
-
- context 'without sorting' do
- it 'returns cached value' do
- expect(helper.runner_contacted_at(runner)).to eq(contacted_at_cached)
- end
- end
-
- context 'with sorting set to created_date' do
- before do
- controller.params[:sort] = 'created_date'
- end
-
- it 'returns cached value' do
- expect(helper.runner_contacted_at(runner)).to eq(contacted_at_cached)
- end
- end
-
- context 'with sorting set to contacted_asc' do
- before do
- controller.params[:sort] = 'contacted_asc'
- end
-
- it 'returns stored value' do
- expect(helper.runner_contacted_at(runner)).to eq(contacted_at_stored)
- end
- end
- end
-
describe '#admin_runners_data_attributes' do
subject { helper.admin_runners_data_attributes }