tablatom / hobo

The web app builder for Rails

This URL has Read+Write access

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