diff options
author | Waynn Lue <WLGades@gmail.com> | 2014-04-15 11:04:07 -0700 |
---|---|---|
committer | Waynn Lue <WLGades@gmail.com> | 2014-04-15 11:04:07 -0700 |
commit | ca13cc1f179bea3030114508b708d6e6ea410cdd (patch) | |
tree | 5924f717ce7cff3b083cc101cae5c803d7ec3b6a | |
parent | a5a254268b9c06dd58d6ea70a7729fdfb2ca14b3 (diff) | |
download | rails-ca13cc1f179bea3030114508b708d6e6ea410cdd.tar.gz rails-ca13cc1f179bea3030114508b708d6e6ea410cdd.tar.bz2 rails-ca13cc1f179bea3030114508b708d6e6ea410cdd.zip |
re-phrase how to run a test
-rw-r--r-- | actionpack/RUNNING_UNIT_TESTS.rdoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/RUNNING_UNIT_TESTS.rdoc b/actionpack/RUNNING_UNIT_TESTS.rdoc index ad1448f61b..2f923136d9 100644 --- a/actionpack/RUNNING_UNIT_TESTS.rdoc +++ b/actionpack/RUNNING_UNIT_TESTS.rdoc @@ -8,10 +8,10 @@ Rake can be found at http://rake.rubyforge.org. == Running by hand -To run a single test suite +Run a single test suite: rake test TEST=path/to/test.rb -which can be further narrowed down to one test: +Run one test in a test suite: rake test TEST=path/to/test.rb TESTOPTS="--name=test_something" |