Show the number of statements in RSpec output?

By default, RSpec output ends with something like

14 examples, 0 failures

Is it possible to show the number of statements made with this stat, similar to what other libraries provide?

+3
source share
2 answers

There is no support. If you are interested in this, submit a feature request https://github.com/rspec/rspec-core/issues .

+3
source

It’s a good habit to have just one statement for an example.

0
source

All Articles