How can I run a single test from a rails test suite?
rake test ANYTHING seems to not help.
rake test ANYTHING
In rails 5,
I used this way to run single test file(all the tests in one file)
rails test -n /TopicsControllerTest/ -v
look here https://stackoverflow.com/a/41183694/3626659