mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Added bundle exec to rake test.
This is in response to rails/rails#3504.
This commit is contained in:
parent
a8468731f7
commit
8611f14caf
1 changed files with 6 additions and 6 deletions
|
@ -87,21 +87,21 @@ $ bundle install --without db
|
|||
This command will install all dependencies except the MySQL and PostgreSQL Ruby drivers. We will come back at these soon. With dependencies installed, you can run the test suite with:
|
||||
|
||||
<shell>
|
||||
$ rake test
|
||||
$ bundle exec rake test
|
||||
</shell>
|
||||
|
||||
You can also run tests for a specific framework, like Action Pack, by going into its directory and executing the same command:
|
||||
|
||||
<shell>
|
||||
$ cd actionpack
|
||||
$ rake test
|
||||
$ bundle exec rake test
|
||||
</shell>
|
||||
|
||||
If you want to run tests from the specific directory use the +TEST_DIR+ environment variable. For example, this will run tests inside +railties/test/generators+ directory only:
|
||||
|
||||
<shell>
|
||||
$ cd railties
|
||||
$ TEST_DIR=generators rake test
|
||||
$ TEST_DIR=generators bundle exec rake test
|
||||
</shell>
|
||||
|
||||
h4. Warnings
|
||||
|
@ -111,7 +111,7 @@ The test suite runs with warnings enabled. Ideally Ruby on Rails should issue no
|
|||
As of this writing they are specially noisy with Ruby 1.9. If you are sure about what you are doing and would like to have a more clear output, there's a way to override the flag:
|
||||
|
||||
<shell>
|
||||
$ RUBYOPT=-W0 rake test
|
||||
$ RUBYOPT=-W0 bundle exec rake test
|
||||
</shell>
|
||||
|
||||
h4. Testing Active Record
|
||||
|
@ -130,7 +130,7 @@ The gem +sqlite3-ruby+ does not belong to the "db" group indeed, if you followed
|
|||
|
||||
<shell>
|
||||
$ cd activerecord
|
||||
$ rake test_sqlite3
|
||||
$ bundle exec rake test_sqlite3
|
||||
</shell>
|
||||
|
||||
h5. MySQL and PostgreSQL
|
||||
|
@ -195,7 +195,7 @@ test_postgresql
|
|||
respectively. As we mentioned before
|
||||
|
||||
<shell>
|
||||
$ rake test
|
||||
$ bundle exec rake test
|
||||
</shell>
|
||||
|
||||
will now run the four of them in turn.
|
||||
|
|
Loading…
Reference in a new issue