Sha256: e21a09397a6aeb2e3cbd8a6fe1fe57e03cd9def8900e2d6e4b665a9235a85cbf

Contents?: true

Size: 439 Bytes

Versions: 4

Compression:

Stored size: 439 Bytes

Contents

# To run this script, run the following in a mysql instance:
#
#   drop database if exists weblog_development;
#   create database weblog_development;
#   grant all on weblog_development.* to blog@localhost;
#   flush privileges;

require 'jdbc_common'
require 'db/mysql'

class MysqlSimpleTest < Test::Unit::TestCase
  include SimpleTestMethods
end

class MysqlHasManyThroughTest < Test::Unit::TestCase
  include HasManyThroughMethods
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
activerecord-jdbc-adapter-0.7.2 test/mysql_simple_test.rb
activerecord-jdbc-adapter-0.8 test/mysql_simple_test.rb
activerecord-jdbc-adapter-0.7.1 test/mysql_simple_test.rb
activerecord-jdbc-adapter-0.7 test/mysql_simple_test.rb