Skip to content
This repository was archived by the owner on Nov 30, 2024. It is now read-only.

Commit 1940cf9

Browse files
committed
Update Cucumber to version 7
1 parent a185857 commit 1940cf9

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Gemfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ else
4040
gem "minitest", "~> 5.3"
4141
end
4242

43-
gem "cucumber", "~> 3.2.0"
43+
if RUBY_VERSION >= '2.5'
44+
gem "cucumber", "~> 7.0.0"
45+
end
46+
4447
gem "aruba", "~> 0.14.9"
4548

4649
gem "coderay", "~> 1.1.1"

cucumber.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
default: --require features --strict --format progress --tags ~@wip features
1+
default: --require features --strict --format progress --tags 'not @wip' features
22
wip: --require features --tags @wip:30 --wip features

features/support/require_expect_syntax_in_aruba_specs.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
if defined?(Cucumber)
22
require 'shellwords'
3-
Before('~@with-clean-spec-opts') do
3+
Before('not @with-clean-spec-opts') do
44
set_environment_variable('SPEC_OPTS', "-r#{Shellwords.escape(__FILE__)}")
55
end
66
else

0 commit comments

Comments
 (0)