File: 14.0.0.md

package info (click to toggle)
ruby-cucumber-core 16.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 764 kB
  • sloc: ruby: 5,074; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 466 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Upgrading to cucumber-core 14.0.0

## Test::Action

This class has now had an extra namespace placed, so the new namespace mappings are as follows

### Before cucumber-core 14.0.0

```ruby
Cucumber::Core::Test::Action
Cucumber::Core::Test::UndefinedAction
Cucumber::Core::Test::UnskippableAction
```

### With cucumber-core 14.0.0

```ruby
Cucumber::Core::Test::Action::Defined
Cucumber::Core::Test::Action::Undefined
Cucumber::Core::Test::Action::Unskippable
```