tablatom / hobo

The web app builder for Rails

tablatom (author)
Thu Oct 01 05:46:38 -0700 2009
commit  ccec47d466812bd342483ba6e8e9b1587b05899c
tree    d320514a8f5920ee3fd3dd676a293ffac0e71b73
parent  5d7455203b147cf4da55dcb08ff355c09a7e2199
hobo / Rakefile
100644 11 lines (10 sloc) 0.408 kb
1
2
3
4
5
6
7
8
9
10
11
desc "Run tests and doctests for all components."
task :test_all do |t|
  puts "There are system tests in http://github.com/tablatom/agility/tree/master"
  system("cd hobofields ; rake test:doctest") &&
    system("cd hobofields ; rake test:unit") &&
    system("cd hobosupport ; rake test:doctest") &&
    system("cd hobo ; rake test:doctest") &&
    system("cd hobo ; rake test")
  exit($?.exitstatus)
end