Skip to content
This repository has been archived by the owner on May 3, 2019. It is now read-only.

Commit

Permalink
rake test command now works
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Chapweske committed Jan 27, 2010
1 parent 27a764e commit a5053d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Rakefile
Expand Up @@ -21,15 +21,15 @@ end
require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
test.libs << 'lib' << 'test'
test.pattern = 'test/**/test_*.rb'
test.pattern = 'test/**/*_test.rb'
test.verbose = true
end

begin
require 'rcov/rcovtask'
Rcov::RcovTask.new do |test|
test.libs << 'test'
test.pattern = 'test/**/test_*.rb'
test.pattern = 'test/**/*_test.rb'
test.verbose = true
end
rescue LoadError
Expand Down

0 comments on commit a5053d9

Please sign in to comment.