aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2014-11-28 11:03:52 +0100
committerYves Senn <yves.senn@gmail.com>2014-11-28 11:05:13 +0100
commit6c83d4bfd5e33bde5d659fcbe6f28bfe80d8eb4a (patch)
tree004446f5b311a2cc2e5970630e2d5a24279f15ea /railties
parent200b9035daa81535d385544b1ce8f3cfa17d0a33 (diff)
downloadrails-6c83d4bfd5e33bde5d659fcbe6f28bfe80d8eb4a.tar.gz
rails-6c83d4bfd5e33bde5d659fcbe6f28bfe80d8eb4a.tar.bz2
rails-6c83d4bfd5e33bde5d659fcbe6f28bfe80d8eb4a.zip
docs, AR no longer makes use of `test:prepare`. [ci skip]
Change originated from https://github.com/rails/rails/pull/17739#issuecomment-64829088 /cc @metaskills
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/rails/test_unit/testing.rake3
1 files changed, 2 insertions, 1 deletions
diff --git a/railties/lib/rails/test_unit/testing.rake b/railties/lib/rails/test_unit/testing.rake
index 0d0cfa3c6b..254ea9ecf6 100644
--- a/railties/lib/rails/test_unit/testing.rake
+++ b/railties/lib/rails/test_unit/testing.rake
@@ -10,7 +10,8 @@ end
namespace :test do
task :prepare do
- # Placeholder task for other Railtie and plugins to enhance. See Active Record for an example.
+ # Placeholder task for other Railtie and plugins to enhance.
+ # If used with Active Record, this task runs before the database schema is synchronized.
end
Rails::TestTask.new(:run) do |t|