summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Bigelow <sbigelow@gitlab.com>2018-12-12 20:54:44 +0000
committerSam Bigelow <sbigelow@gitlab.com>2018-12-12 20:54:44 +0000
commit8b7aa1e44395fba461ecdf14fc860229989ae724 (patch)
treea450fed48970622aee9faa17cb60308e3a876f6a
parent78cad022cb129c4ddf710b9e922f28d4683eaf2c (diff)
downloadgitlab-ce-8b7aa1e44395fba461ecdf14fc860229989ae724.tar.gz
Update best_practices.md
-rw-r--r--doc/development/testing_guide/best_practices.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/development/testing_guide/best_practices.md b/doc/development/testing_guide/best_practices.md
index 10b36b23b71..24f4d457d45 100644
--- a/doc/development/testing_guide/best_practices.md
+++ b/doc/development/testing_guide/best_practices.md
@@ -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