transaction-simple 1.4.0 → 1.4.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,25 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #--
3
- # Transaction::Simple
4
- # Simple object transaction support for Ruby
5
- # http://rubyforge.org/projects/trans-simple/
6
- # Version 1.4.0
7
- #
8
- # Licensed under a MIT-style licence. See Licence.txt in the main
9
- # distribution for full licensing information.
10
- #
11
- # Copyright (c) 2003 - 2007 Austin Ziegler
12
- #
13
- # $Id: test_all.rb 55 2007-02-03 23:29:34Z austin $
14
- #++
15
-
16
- $LOAD_PATH.unshift("#{File.dirname(__FILE__)}/../lib") if __FILE__ == $0
17
-
18
- $stderr.puts "Checking for test cases:"
19
-
20
- Dir[File.join(File.dirname($0), 'test_*.rb')].each do |testcase|
21
- next if File.basename(testcase) == File.basename(__FILE__)
22
- $stderr.puts "\t#{testcase}"
23
- load testcase
24
- end
25
- $stderr.puts " "