I've tried cucumber --dry-run
, but it only seems to work on a per feature file basis.
相关问题
- How to specify memcache server to Rack::Session::M
- Why am I getting a “C compiler cannot create execu
- reference to a method?
- ruby 1.9 wrong file encoding on windows
- gem cleanup shows error: Unable to uninstall bundl
相关文章
- Ruby using wrong version of openssl
- Difference between Thread#run and Thread#wakeup?
- how to call a active record named scope with a str
- How do you run cucumber with Scala 2.11 and sbt 0.
- “No explicit conversion of Symbol into String” for
- Segmentation fault with ruby 2.0.0p247 leading to
- How to detect if an element exists in Watir
- uninitialized constant Mysql2::Client::SECURE_CONN
cucumber --dry-run
will include the count of scenarios and steps for all features run.For example,
Given two feature files:
test.feature:
test2.feature:
When
cucumber --dry-run
is run, the results show:As you can see, the scenario and step counts are including all scenarios from all features.