What is it that rails spec
does, if anything, that rspec
alone does not?
I was looking for a way to run only specific RSpec tests from the command line, and the only way I found requires running rspec
directly (rspec --tag focus ...
, not via rails spec
. I could do that, but I'm concerned that maybe doing so bypassing some important setup or other functionality.