Take the 2008 Git User's Survey and help out! [ hide ]

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
Search Repo:
francois (author)
Sat Mar 22 19:16:14 -0700 2008
commit  5974519381b76cb2e8ad4334f4d9f8682ae6f3fd
tree    1fae6bd4fbbfd8b31882bfcfae1b53bbb2330dc0
parent  a7b5e41f15645c99f97f370904c28a9f57bc8e7b
piston / tasks / test.rake
100644 10 lines (9 sloc) 0.208 kb
1
2
3
4
5
6
7
8
9
10
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
end