Update best_practices.md

This commit is contained in:
Sam Bigelow 2018-12-12 20:54:44 +00:00
parent 78cad022cb
commit 8b7aa1e443
1 changed files with 3 additions and 3 deletions

View File

@ -21,12 +21,12 @@ Here are some things to keep in mind regarding test performance:
To run rspec tests:
```
```sh
# run all tests
bundle exec rake rspec
bundle exec rspec
# run test for path
bundle exec rake rspec spec/[path]/[to]/[spec].rb
bundle exec rspec spec/[path]/[to]/[spec].rb
```
### General guidelines