summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorAlec Clarke <alec.clarke@clio.com>2020-09-18 10:50:45 -0400
committerSamuel Williams <samuel.williams@oriontransfer.co.nz>2020-09-19 16:39:34 +1200
commit2d3f6069e1995e0af4d8e702b3a131100b4ac33f (patch)
tree735bf50ba7845b3953871c2271aa3cb883b22a8c /CONTRIBUTING.md
parent65c4fcd6a0f5217f92a2d84de289cdcfea3fd490 (diff)
downloadrack-2d3f6069e1995e0af4d8e702b3a131100b4ac33f.tar.gz
Update test command in CONTRIBUTING.md
When following the CONTRIBUTING.md steps, the `fulltest` rake task wasn't found. After digging through the commits, it looks to have been replaced by `test` in https://github.com/rack/rack/commit/0c5647799d4fa2528445c50f83a5bf9b1c459d0a This change updates the doc to use `test` instead of `fulltest`.
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 70a27468..6d517f78 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -68,7 +68,11 @@ We definitely appreciate pull requests that highlight or reproduce a problem, ev
Implement your feature or bug fix.
-Make sure that `bundle exec rake fulltest` completes without errors.
+Make sure that all tests pass:
+
+```
+bundle exec rake test
+```
#### Write Documentation