diff options
author | Rémy Coutable <remy@rymai.me> | 2018-09-03 16:36:18 +0200 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2018-09-03 17:41:44 +0200 |
commit | 86e5dcdb21f5e83009f877e9c62a9f5252de8d99 (patch) | |
tree | b80cb06f74e85e9caab3da9d6f36b7572c00715e /qa | |
parent | 48541cacc050b931d884ba828d0901232308b4c4 (diff) | |
download | gitlab-ce-86e5dcdb21f5e83009f877e9c62a9f5252de8d99.tar.gz |
[QA] Add a new Test::Sanity::Failing scenario that always fails
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'qa')
-rw-r--r-- | qa/qa.rb | 1 | ||||
-rw-r--r-- | qa/qa/scenario/test/sanity/failing.rb | 18 | ||||
-rw-r--r-- | qa/qa/specs/features/sanity/failing_spec.rb | 13 |
3 files changed, 32 insertions, 0 deletions
@@ -98,6 +98,7 @@ module QA end module Sanity + autoload :Failing, 'qa/scenario/test/sanity/failing' autoload :Selectors, 'qa/scenario/test/sanity/selectors' end end diff --git a/qa/qa/scenario/test/sanity/failing.rb b/qa/qa/scenario/test/sanity/failing.rb new file mode 100644 index 00000000000..03452f6693d --- /dev/null +++ b/qa/qa/scenario/test/sanity/failing.rb @@ -0,0 +1,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 diff --git a/qa/qa/specs/features/sanity/failing_spec.rb b/qa/qa/specs/features/sanity/failing_spec.rb new file mode 100644 index 00000000000..7e0480e9067 --- /dev/null +++ b/qa/qa/specs/features/sanity/failing_spec.rb @@ -0,0 +1,13 @@ +# frozen_string_literal: true + +module QA + context 'Sanity checks', :orchestrated, :failing do + describe 'Failing orchestrated example' do + it 'always fails' do + Runtime::Browser.visit(:gitlab, Page::Main::Login) + + expect(page).to have_text("These Aren't the Texts You're Looking For", wait: 1) + end + end + end +end |