diff options
author | Yves Senn <yves.senn@gmail.com> | 2015-07-08 09:09:53 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2015-07-08 09:09:53 +0200 |
commit | c2b5aa041b04e65475dd3ebb9f33a68b26e25895 (patch) | |
tree | feba390d718d3338bb689284475043d0b53579ba | |
parent | f6f3772c174651548c622611c5433f64ad7cf2eb (diff) | |
parent | 8f4ed7f900aca829ad59a92aee3a62b4168fe2eb (diff) | |
download | rails-c2b5aa041b04e65475dd3ebb9f33a68b26e25895.tar.gz rails-c2b5aa041b04e65475dd3ebb9f33a68b26e25895.tar.bz2 rails-c2b5aa041b04e65475dd3ebb9f33a68b26e25895.zip |
Merge pull request #20805 from yui-knk/fix/how_to_run_test
[ci skip] Add `bundle exec` to Running a Single Test
-rw-r--r-- | guides/source/contributing_to_ruby_on_rails.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/contributing_to_ruby_on_rails.md b/guides/source/contributing_to_ruby_on_rails.md index c19813c8a5..846b8a007d 100644 --- a/guides/source/contributing_to_ruby_on_rails.md +++ b/guides/source/contributing_to_ruby_on_rails.md @@ -295,7 +295,7 @@ You can run a single test through ruby. For instance: ```bash $ cd actionmailer -$ ruby -w -Itest test/mail_layout_test.rb -n test_explicit_class_layout +$ bundle exec ruby -w -Itest test/mail_layout_test.rb -n test_explicit_class_layout ``` The `-n` option allows you to run a single method instead of the whole |