public
Description: Inter-application integration testing
Homepage:
Clone URL: git://github.com/gma/integral.git
integral / integrate.rb
100644 17 lines (13 sloc) 0.444 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env ruby
 
script = File.expand_path(File.join(File.dirname(__FILE__), "integrate.rb"))
 
puts "###"
puts "### Edit integrate.rb so that it launches your test suite!"
puts "###"
puts "### You'll find it here:"
puts "### #{script}"
puts "###"
puts "### If your script exits with a return value of 0 your tests are"
puts "### considered to have passed. If non-zero, they'll be recorded"
puts "### as a big fat FAIL."
puts "###"
 
sleep 5