aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2014-05-25 00:43:31 +0200
committerXavier Noria <fxn@hashref.com>2014-05-25 00:45:20 +0200
commit36e3ca6cc526d867613b8dd76026bf2b2c5dd4a4 (patch)
tree8cce6220e4f9603029f1b3154c25546901b8cc00 /railties
parent0bd909abea076ee63a93ca1833f712c215e29915 (diff)
downloadrails-36e3ca6cc526d867613b8dd76026bf2b2c5dd4a4.tar.gz
rails-36e3ca6cc526d867613b8dd76026bf2b2c5dd4a4.tar.bz2
rails-36e3ca6cc526d867613b8dd76026bf2b2c5dd4a4.zip
integration tests do not need to load fixtures by hand
I don't know when this changed, checked back up to 3.2 and integration tests instantiate fixtures just fine.
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/rails/generators/rails/app/templates/test/test_helper.rb3
1 files changed, 0 insertions, 3 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 6b011e577a..87b8fe3516 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
@@ -5,9 +5,6 @@ require 'rails/test_help'
class ActiveSupport::TestCase
<% unless options[:skip_active_record] -%>
# 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
fixtures :all
<% end -%>