Sha256: 49728304a5faf979afa3f3dfdaca4690e5fde6fce3dd9ceb505b844f65ba7f66
Contents?: true
Size: 617 Bytes
Versions: 1
Compression:
Stored size: 617 Bytes
Contents
# $Id: test.rb,v 1.6 2004/11/17 07:40:03 chw Exp chw $ # # Execute in ruby-odbc top directory. # # ruby test.rb "mysql-DSN" "mysql-user" "mysql-password" # # Test creates and deletes table "test" in that DSN. require './odbc' $dsn = ARGV.shift $uid = ARGV.shift $pwd = ARGV.shift begin Dir.glob("test/[0-9]*.rb").sort.each do |f| f =~ /^test\/\d+(.*)\.rb$/ print $1 + "."*(20-$1.length) $stdout.flush load f print "ok\n" end ensure begin $c.drop_all unless $c.class != ODBC::Database rescue end begin ODBC.connect($dsn, $uid, $pwd).do("drop table test") rescue end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-odbc-0.9998 | test/test.rb |