summaryrefslogtreecommitdiff
path: root/tasks
diff options
context:
space:
mode:
authordanielsdeleo <dan@getchef.com>2015-05-18 14:56:13 -0700
committerdanielsdeleo <dan@getchef.com>2015-05-19 13:11:13 -0700
commit69da234d82766f598bbb9ebafb25de7d587fe83d (patch)
tree8f9fe04c661103a093254b2cbbdf497aa1645f07 /tasks
parent42b4e067e422d137f604c91a713dc7630b3a6e57 (diff)
downloadchef-69da234d82766f598bbb9ebafb25de7d587fe83d.tar.gz
Use descriptive constant names in tests to avoid conflict
Diffstat (limited to 'tasks')
-rw-r--r--tasks/rspec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/rspec.rb b/tasks/rspec.rb
index a6fc5a9180..d45e6bc2df 100644
--- a/tasks/rspec.rb
+++ b/tasks/rspec.rb
@@ -31,7 +31,7 @@ begin
RSpec::Core::RakeTask.new(:spec) do |t|
# right now this just limits to functional + unit, but could also remove
# individual tests marked long-running
- t.pattern = FileList['spec/{functional,unit}/**/*_spec.rb']
+ t.pattern = FileList['spec/**/*_spec.rb']
end
namespace :spec do