Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/development/testing_guide/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