diff options
author | Dalibor Nasevic <dalibor.nasevic@gmail.com> | 2013-02-08 00:53:11 +0100 |
---|---|---|
committer | Prem Sichanugrist <s@sikac.hu> | 2013-03-09 16:03:55 -0500 |
commit | df85dfa6fa6f7ae9a0b72eb9b9a254d2d5560f38 (patch) | |
tree | 6a0782530c35a6010c257394cb17e3bea1903707 /railties/lib/rails/generators/rails | |
parent | 1a0c58b2988a24a783b4f9a658ac629922125551 (diff) | |
download | rails-df85dfa6fa6f7ae9a0b72eb9b9a254d2d5560f38.tar.gz rails-df85dfa6fa6f7ae9a0b72eb9b9a254d2d5560f38.tar.bz2 rails-df85dfa6fa6f7ae9a0b72eb9b9a254d2d5560f38.zip |
Improve wording for rails test command
Diffstat (limited to 'railties/lib/rails/generators/rails')
-rw-r--r-- | railties/lib/rails/generators/rails/app/templates/test/test_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/rails/generators/rails/app/templates/test/test_helper.rb b/railties/lib/rails/generators/rails/app/templates/test/test_helper.rb index 754e99e09f..f0aeeee827 100644 --- a/railties/lib/rails/generators/rails/app/templates/test/test_helper.rb +++ b/railties/lib/rails/generators/rails/app/templates/test/test_helper.rb @@ -6,8 +6,8 @@ class ActiveSupport::TestCase <% unless options[:skip_active_record] -%> ActiveRecord::Migration.check_pending! - # Uncomment the `fixtures` line below to setup all fixtures in test/fixtures/*.yml for all tests - # in alphabetical order. + # Uncomment the `fixtures :all` line below to setup all fixtures in test/fixtures/*.yml + # for all tests in alphabetical order. # # Note: You'll currently still have to declare fixtures explicitly in integration tests # -- they do not yet inherit this setting |