features/cli.feature in cobench-0.0.16 vs features/cli.feature in cobench-0.0.17
- old
+ new
@@ -13,5 +13,16 @@
Scenario: Simple report
When I run bin/cobench with "--coder yegor256 --coder John --verbose --dry --to foo"
Then Stdout contains "XML saved to"
And Exit code is zero
+ Scenario: Simple report with defaults
+ Given I have a ".cobench" file with content:
+ """
+ --verbose
+
+ --coder=john
+ """
+ When I run bin/cobench with "--dry"
+ Then Stdout contains "XML saved to"
+ And Exit code is zero
+