@@ -22,13 +22,13 @@ you can use the `behat` command directly:
2222
2323``` bash
2424# test only a specific redmine version
25- docker compose exec php composer behat -- --suite=redmine_50104
25+ docker compose exec php composer behat -- --suite=redmine_6_0
2626# test only specific endpoints
2727docker compose exec php composer behat -- --tags=issue,group
2828# test only specific endpoints on a specific redmine version
29- docker compose exec php composer behat -- --suite=redmine_50104 --tags=issue,group
29+ docker compose exec php composer behat -- --suite=redmine_6_0 --tags=issue,group
3030# test only a specific redmine version and format the output as `progress` (default is `pretty`)
31- docker compose exec php composer behat -- --suite=redmine_50104 --format=progress
31+ docker compose exec php composer behat -- --suite=redmine_6_0 --format=progress
3232```
3333
3434## Redmine version specific features
@@ -64,18 +64,18 @@ A new Redmine version could introduce new REST-API endpoints.
6464Tests for this endpoint should not be run on older Redmine versions.
6565This can be handled on the ` scenario ` or ` feature ` layer.
6666
67- 1 . Tag features or scenarios e.g. with ` @since50000 ` .
67+ 1 . Tag features or scenarios e.g. with ` @since60000 ` .
6868
6969```
70- @since50000
70+ @since60000
7171Feature: Interacting with the new REST API endpoint
7272 [...]
7373```
7474
7575or
7676
7777```
78- @since50000
78+ @since60000
7979 Scenario: Using a new feature
8080 Given I have a "NativeCurlClient" client
8181 And I create a project with name "Test Project" and identifier "test-project"
8888default:
8989 suites:
9090 [...]
91- redmine_40210 :
91+ redmine_5_1 :
9292 [...]
9393 filters:
94- tags: "~@since50000 "
94+ tags: "~@since60000 "
9595
9696```
9797
125125default:
126126 suites:
127127 [...]
128- redmine_60000 :
128+ redmine_6_0 :
129129 [...]
130130 filters:
131131 tags: "~@until60000"
0 commit comments