summaryrefslogtreecommitdiff
path: root/qa/qa/scenario/test/sanity/failing.rb
blob: 03452f6693d7daaa0624bde0a2c3372bc365cfbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module QA
  module Scenario
    module Test
      module Sanity
        ##
        # This scenario exits with a 1 exit code.
        #
        class Failing < Template
          include Bootable

          tags :failing
        end
      end
    end
  end
end