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:
authorMark Lapierre <mlapierre@gitlab.com>2019-02-11 12:04:59 +0300
committerRamya Authappan <rauthappan@gitlab.com>2019-02-11 12:04:59 +0300
commit97265d39e72cbb32468a3f1d671820528af02a8b (patch)
tree03c7d01e071ce0843987ad6f1eb96234fa20074a /qa/spec/support/shared_examples
parent25af9032750c215860829fecb196da1e1c5ace6b (diff)
[CE] Improve `wait_for_push`
Diffstat (limited to 'qa/spec/support/shared_examples')
-rw-r--r--qa/spec/support/shared_examples/scenario_shared_examples.rb49
1 files changed, 0 insertions, 49 deletions
diff --git a/qa/spec/support/shared_examples/scenario_shared_examples.rb b/qa/spec/support/shared_examples/scenario_shared_examples.rb
deleted file mode 100644
index 5fd55d7d96b..00000000000
--- a/qa/spec/support/shared_examples/scenario_shared_examples.rb
+++ /dev/null
@@ -1,49 +0,0 @@
-# frozen_string_literal: true
-
-shared_examples 'a QA scenario class' do
- let(:attributes) { spy('Runtime::Scenario') }
- let(:release) { spy('Runtime::Release') }
- let(:runner) { spy('Specs::Runner') }
-
- let(:args) { ['gitlab_address'] }
- let(:tags) { [] }
- let(:options) { %w[path1 path2] }
-
- before do
- stub_const('QA::Runtime::Release', release)
- stub_const('QA::Runtime::Scenario', attributes)
- stub_const('QA::Specs::Runner', runner)
-
- allow(runner).to receive(:perform).and_yield(runner)
- end
-
- it 'responds to perform' do
- expect(subject).to respond_to(:perform)
- end
-
- it 'sets an address of the subject' do
- subject.perform(*args)
-
- expect(attributes).to have_received(:define).with(:gitlab_address, 'gitlab_address')
- end
-
- it 'performs before hooks' do
- subject.perform(*args)
-
- expect(release).to have_received(:perform_before_hooks)
- end
-
- it 'sets tags on runner' do
- subject.perform(*args)
-
- expect(runner).to have_received(:tags=).with(tags)
- end
-
- context 'specifying RSpec options' do
- it 'sets options on runner' do
- subject.perform(*args, *options)
-
- expect(runner).to have_received(:options=).with(options)
- end
- end
-end