summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorJohn Mair <jrmair@gmail.com>2012-11-28 01:26:28 +0100
committerJohn Mair <jrmair@gmail.com>2012-11-28 02:05:30 +0100
commitd1489a59a30f0f0bd89f8c9ffa1f75584bb5e70a (patch)
tree76123ed5d2163248195c5b196f5bad84b59e0b32 /Rakefile
parente5ad6fc5618561e7e6acdbd3b0aa25adbcaff30e (diff)
downloadpry-d1489a59a30f0f0bd89f8c9ffa1f75584bb5e70a.tar.gz
moved test helper.rb to lib/pry/test/helper.rb, so plugins can use our test helpers
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 49e71a6f..412e9b16 100644
--- a/Rakefile
+++ b/Rakefile
@@ -49,7 +49,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!
- sh "bacon -Ispec -rubygems -a -q #{all_specs.join ' '}"
+ system "bacon -Ilib/pry/test -Ispec -rubygems -a -q #{all_specs.join ' '}"
end
task :spec => :test