Posts by RBrandao • 26 points
1 post
-
1
votes2
answers1260
viewsA: How to run unit tests on rspec?
You can specify specific files so that Rspec only runs tests of these files, for example $ rspec spec/models/* It will run only model tests. You can also run only one test by specifying the line,…