From 5323a51126e42be3b303325ccedd141b9eef1d9a Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Thu, 9 Jul 2015 17:24:29 -0600 Subject: [PATCH] Use color --- tasks/test.rake | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tasks/test.rake b/tasks/test.rake index 18e4395b1..a6da5e8c9 100644 --- a/tasks/test.rake +++ b/tasks/test.rake @@ -4,11 +4,6 @@ require 'rspec/core/rake_task' namespace :test do RSpec::Core::RakeTask.new(:unit) do |t| t.pattern = "test/unit/**/*_test.rb" - end - - Rake::TestTask.new do |t| - t.name = "unit_old" - t.libs << "test/unit_legacy" - t.pattern = "test/unit_legacy/**/*_test.rb" + t.rspec_opts = "--color" end end