aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2012-07-04 23:47:41 -0500
committerGuillermo Iguaran <guilleiguaran@gmail.com>2012-07-04 23:47:41 -0500
commit5be3d89f4e2ecd78d631a33f2ebbf4a8cd017096 (patch)
tree610dc32b88ea63323c507a5d9662b0529d1cf457 /railties/lib/rails/generators
parent6f74d36c4263a6cbbc6dc32a03edeed04faefbd9 (diff)
downloadrails-5be3d89f4e2ecd78d631a33f2ebbf4a8cd017096.tar.gz
rails-5be3d89f4e2ecd78d631a33f2ebbf4a8cd017096.tar.bz2
rails-5be3d89f4e2ecd78d631a33f2ebbf4a8cd017096.zip
CSV fixtures aren't supported by default anymore, update generated test_helper.rb to reflect that
Diffstat (limited to 'railties/lib/rails/generators')
-rw-r--r--railties/lib/rails/generators/rails/app/templates/test/test_helper.rb2
1 files changed, 1 insertions, 1 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 0090293200..9afda2d0df 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,7 +6,7 @@ class ActiveSupport::TestCase
<% unless options[:skip_active_record] -%>
ActiveRecord::Migration.check_pending!
- # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
+ # 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