summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc A. Paradise <marc.paradise@gmail.com>2021-04-01 17:36:13 -0400
committerMarc A. Paradise <marc.paradise@gmail.com>2021-04-21 13:05:36 -0400
commit0b973911e3adff4320f0fdbc7ebaf97a6446110d (patch)
treea293f33026db13cc7f08877453a3938793952a19
parent22e7224e814933769b1589739138614d14a9ec5c (diff)
downloadchef-0b973911e3adff4320f0fdbc7ebaf97a6446110d.tar.gz
Fix rspec task - no longer needs to exclude knife spec
Signed-off-by: Marc A. Paradise <marc.paradise@gmail.com>
-rw-r--r--tasks/rspec.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/tasks/rspec.rb b/tasks/rspec.rb
index 050c40be5c..60a7156d01 100644
--- a/tasks/rspec.rb
+++ b/tasks/rspec.rb
@@ -44,9 +44,6 @@ begin
RSpec::Core::RakeTask.new(:spec) do |t|
t.verbose = false
t.rspec_opts = %w{--profile}
- t.pattern = FileList["spec/**/*_spec.rb"].reject do |path|
- path =~ /knife.*/
- end
end
namespace :spec do
@@ -55,9 +52,6 @@ begin
t.verbose = false
t.rspec_opts = %w{--profile}
t.pattern = FileList["spec/**/*_spec.rb"]
- t.pattern = FileList["spec/**/*_spec.rb"].reject do |path|
- path =~ /knife.*/
- end
end
desc "Print Specdoc for all specs"
@@ -80,9 +74,6 @@ begin
RSpec::Core::RakeTask.new(sub) do |t|
t.verbose = false
t.rspec_opts = %w{--profile}
- t.pattern = FileList["spec/#{sub}/**/*_spec.rb"].reject do |path|
- path =~ /knife.*/
- end
end
end
end