Skip to content

Commit

Permalink
add rake task to run all tests at once
Browse files Browse the repository at this point in the history
  • Loading branch information
janxious committed Feb 23, 2012
1 parent 8c82baa commit c4e7523
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Rakefile
@@ -1,2 +1,10 @@
#!/usr/bin/env rake
require "bundler/gem_tasks"
require "rake/testtask"

Rake::TestTask.new(:test) do |t|
t.libs << "test"
t.pattern = 'test/**/*_test.rb'
t.verbose = true
end
Rake::Task["test"].comment = "run the tests"
1 change: 1 addition & 0 deletions eb-patches.gemspec
Expand Up @@ -16,5 +16,6 @@ Gem::Specification.new do |gem|
gem.require_paths = ["lib"]
gem.version = Eb::Patches::VERSION

gem.add_development_dependency "rake"
gem.add_development_dependency "minitest"
end

0 comments on commit c4e7523

Please sign in to comment.