From: Jeff McCune Date: Wed, 28 Nov 2012 01:06:29 +0000 (-0800) Subject: Revert "(Maint) Add spec/functions to rake test task" X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=59cc85deb509c1c91ea41c314edf73ac59ea2780;p=puppet-stdlib.git Revert "(Maint) Add spec/functions to rake test task" This reverts commit dbe3c8ecf6379963f583ea11e51e403e5ad55002. Because testing these against Puppet 2.6.x is causing failures. These need to be cleaned up, but I want to leave and this was the behavior before I tried to "fix" it. --- diff --git a/Rakefile b/Rakefile index cbe8f28..01b2a31 100644 --- a/Rakefile +++ b/Rakefile @@ -5,7 +5,7 @@ task :default => [:test] desc 'Run RSpec' RSpec::Core::RakeTask.new(:test) do |t| - t.pattern = 'spec/{unit,functions}/**/*.rb' + t.pattern = 'spec/{unit}/**/*.rb' t.rspec_opts = ['--color'] end