Welcome to mirror list, hosted at ThFree Co, Russian Federation.

framework.rb « sanity « test « scenario « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7835d2564f012bb2133ad951f7d8a3be61dfb139 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module QA
  module Scenario
    module Test
      module Sanity
        ##
        # This scenario runs 1 passing example, and 1 failing example, and exits
        # with a 1 exit code.
        #
        class Framework < Template
          include Bootable

          tags :framework
        end
      end
    end
  end
end