features/pending/pending.feature.rb in cucumber-compatibility-kit-13.0.2 vs features/pending/pending.feature.rb in cucumber-compatibility-kit-14.0.0
- old
+ new
@@ -1,13 +1,13 @@
# frozen_string_literal: true
-Given('an implemented step') do
+Given('an implemented non-pending step') do
# no-op
end
-Given('a step that we expect to be skipped') do
+Given('an implemented step that is skipped') do
# no-op
end
-Given('a step that isnt implemented yet') do
- 'pending'
+Given('an unimplemented pending step') do
+ pending('')
end