diff options
author | Claudio B. <claudiob@users.noreply.github.com> | 2015-07-17 03:08:46 -0700 |
---|---|---|
committer | Claudio B. <claudiob@users.noreply.github.com> | 2015-07-17 03:08:46 -0700 |
commit | e5bfe7149ac46de4ef68f15efd0b3c76ad8aa70c (patch) | |
tree | c22d973a646551d8b808607f256cd5b7e754fc87 /guides/source | |
parent | 607dfb64650528909e743f35329368f318e319b7 (diff) | |
parent | 2312ea5bb454d6d511d7298b93214c19ebd3a1d5 (diff) | |
download | rails-e5bfe7149ac46de4ef68f15efd0b3c76ad8aa70c.tar.gz rails-e5bfe7149ac46de4ef68f15efd0b3c76ad8aa70c.tar.bz2 rails-e5bfe7149ac46de4ef68f15efd0b3c76ad8aa70c.zip |
Merge pull request #20909 from yui-knk/fix/test-commnad
[ci skip] Add `bundle exec` to test run command
Diffstat (limited to 'guides/source')
-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 2e86eee587..3b944f1274 100644 --- a/guides/source/contributing_to_ruby_on_rails.md +++ b/guides/source/contributing_to_ruby_on_rails.md @@ -334,7 +334,7 @@ will now run the four of them in turn. You can also run any single test separately: ```bash -$ ARCONN=sqlite3 ruby -Itest test/cases/associations/has_many_associations_test.rb +$ ARCONN=sqlite3 bundle exec ruby -Itest test/cases/associations/has_many_associations_test.rb ``` To run a single test against all adapters, use: |