summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorRyan Fitzgerald <rwfitzge@gmail.com>2012-12-09 11:42:41 -0800
committerRyan Fitzgerald <rwfitzge@gmail.com>2012-12-09 11:42:41 -0800
commitcbf19cc7a47d7a5a2d723eefc48ef1b2130d3220 (patch)
treeeec03f3f5077cd4079f436e7b85b24f07c3be4c9 /Rakefile
parente0bebb831d7b000db71c45539aabb66e6582a09c (diff)
downloadpry-cbf19cc7a47d7a5a2d723eefc48ef1b2130d3220.tar.gz
Move all fixtures into fixtures/
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 695f77c5..0fbf3a39 100644
--- a/Rakefile
+++ b/Rakefile
@@ -50,7 +50,7 @@ task :test do
check_dependencies unless ENV['SKIP_DEP_CHECK']
all_specs = Dir['spec/**/*_spec.rb']
all_specs.shuffle! if all_specs.respond_to? :shuffle!
- system "bacon -Ispec -rubygems -a -q #{all_specs.join ' '}"
+ system "bacon -Ispec -rubygems -q #{all_specs.join ' '}"
end
task :spec => :test