public
Description: The web app builder for Rails
Homepage: http://hobocentral.net
Clone URL: git://github.com/tablatom/hobo.git
hobo / Rakefile
100644 12 lines (11 sloc) 0.461 kb
1
2
3
4
5
6
7
8
9
10
11
12
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"
  puts "and http://github.com/bryanlarsen/hobo-test"
  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