summaryrefslogtreecommitdiff
path: root/qa/qa/scenario/test/integration/github.rb
blob: 76c3923d68a57f4f21f8ed4ca54e4f2507297e4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module QA
  module Scenario
    module Test
      module Integration
        class Github < Test::Instance::All
          tags :github

          def perform(address, *rspec_options)
            # This test suite requires a GitHub personal access token
            Runtime::Env.require_github_access_token!

            super
          end
        end
      end
    end
  end
end