public
Description: Piston is a utility that eases vendor branch management. This repository is a complete reimplementation of Piston to provide different backends, depending on the repositories and working copies you pistonize from.
Homepage: http://piston.rubyforge.org/
Clone URL: git://github.com/francois/piston.git
francois (author)
Sat Mar 22 19:27:55 -0700 2008
commit  c81aa59f7c99f22b181a27899af6a9eb7944bb91
tree    12f45dc2727824bfbcc42847814522978fee46c3
parent  5974519381b76cb2e8ad4334f4d9f8682ae6f3fd
piston / tasks / test.rake
100644 18 lines (15 sloc) 0.382 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require "rake/testtask"
 
namespace :test do
  Rake::TestTask.new("units") do |t|
    t.libs << "test"
    t.test_files = FileList['test/unit/**/test_*.rb']
    t.verbose = true
    t.warning = true
  end
 
  Rake::TestTask.new("integration") do |t|
    t.libs << "test"
    t.test_files = FileList['test/integration/**/test_*.rb']
    t.verbose = true
    t.warning = true
  end
end