summaryrefslogtreecommitdiff
path: root/qa/qa/scenario/test/sanity/framework.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/scenario/test/sanity/framework.rb')
-rw-r--r--qa/qa/scenario/test/sanity/framework.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/qa/qa/scenario/test/sanity/framework.rb b/qa/qa/scenario/test/sanity/framework.rb
new file mode 100644
index 00000000000..7835d2564f0
--- /dev/null
+++ b/qa/qa/scenario/test/sanity/framework.rb
@@ -0,0 +1,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