From efb3938f7c5b5cb823eb8777f12db33f2e29503d Mon Sep 17 00:00:00 2001 From: Simone Carletti Date: Thu, 14 Jun 2012 11:32:16 +0200 Subject: [PATCH] There are now slow specs. Moreover, in RSpec 2 we will be able to use metadata to filter specs. https://www.relishapp.com/rspec/rspec-core/v/2-10/docs/metadata --- tasks/spec.rake | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tasks/spec.rake b/tasks/spec.rake index 85d498633..021b3eb74 100644 --- a/tasks/spec.rake +++ b/tasks/spec.rake @@ -6,12 +6,6 @@ namespace :spec do RSpec::Core::RakeTask.new(:all) do |t| end - RSpec::Core::RakeTask.new(:fast) do |t| - t.pattern = FileList['spec/**/*_spec.rb'].exclude( - 'spec/**/*_slow_spec.rb' - ) - end - desc 'Generate HTML Specdocs for all specs.' RSpec::Core::RakeTask.new(:specdoc) do |t| specdoc_path = File.expand_path('../../specdoc', __FILE__)