diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-04 11:51:07 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-04 12:11:03 -0300 |
commit | f663132eef0e5d96bf2a58cec9f7c856db20be7c (patch) | |
tree | bba52e406c09e0b2cfb9ec1e8b591c5fee630e11 /railties/lib | |
parent | c564dcb75c191ab3d21cc6f920998b0d6fbca623 (diff) | |
download | rails-f663132eef0e5d96bf2a58cec9f7c856db20be7c.tar.gz rails-f663132eef0e5d96bf2a58cec9f7c856db20be7c.tar.bz2 rails-f663132eef0e5d96bf2a58cec9f7c856db20be7c.zip |
Remove deprecated `test:all` and `test:all:db` tasks
Diffstat (limited to 'railties/lib')
-rw-r--r-- | railties/lib/rails/test_unit/testing.rake | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/railties/lib/rails/test_unit/testing.rake b/railties/lib/rails/test_unit/testing.rake index 254ea9ecf6..d836c0d6d6 100644 --- a/railties/lib/rails/test_unit/testing.rake +++ b/railties/lib/rails/test_unit/testing.rake @@ -21,29 +21,6 @@ namespace :test do desc "Run tests quickly, but also reset db" task :db => %w[db:test:prepare test] - desc "Run tests quickly by merging all types and not resetting db" - Rails::TestTask.new(:all) do |t| - t.pattern = "test/**/*_test.rb" - end - - Rake::Task["test:all"].enhance do - Rake::Task["test:deprecate_all"].invoke - end - - task :deprecate_all do - ActiveSupport::Deprecation.warn "rake test:all is deprecated and will be removed in Rails 5. " \ - "Use rake test to run all tests in test directory." - end - - namespace :all do - desc "Run tests quickly, but also reset db" - task :db => %w[db:test:prepare test:all] - - Rake::Task["test:all:db"].enhance do - Rake::Task["test:deprecate_all"].invoke - end - end - Rails::TestTask.new(single: "test:prepare") ["models", "helpers", "controllers", "mailers", "integration", "jobs"].each do |name| |