summaryrefslogtreecommitdiff
path: root/qa/spec/scenario/test/integration/github_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/spec/scenario/test/integration/github_spec.rb')
-rw-r--r--qa/spec/scenario/test/integration/github_spec.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/qa/spec/scenario/test/integration/github_spec.rb b/qa/spec/scenario/test/integration/github_spec.rb
deleted file mode 100644
index 4ad42b4f5cc..00000000000
--- a/qa/spec/scenario/test/integration/github_spec.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-# frozen_string_literal: true
-
-RSpec.describe QA::Scenario::Test::Integration::Github do
- describe '#perform' do
- let(:env) { spy('Runtime::Env', knapsack?: false, dry_run: false) }
-
- before do
- stub_const('QA::Runtime::Env', env)
- end
-
- it_behaves_like 'a QA scenario class' do
- let(:tags) { [:github] }
-
- it 'requires a GitHub access token' do
- subject.perform(args)
-
- expect(env).to have_received(:require_github_access_token!)
- end
- end
- end
-end