Assume blank password

This commit is contained in:
Lourens Naude 2008-09-06 17:21:36 +01:00
parent 70c58ce67a
commit 26202b3ddb
2 changed files with 4 additions and 4 deletions

View File

@ -1,12 +1,12 @@
require File.dirname(__FILE__) + '/test_helper'
EventedMysqlTest.new( 10 ) do |test|
test.setup{ Mysql.real_connect('localhost','root','3421260') }
test.setup{ Mysql.real_connect('localhost','root') }
test.run!
end
EventedMysqlTest.new( 10 ) do |test|
test.setup{ Mysql.real_connect('localhost','root','3421260') }
test.setup{ Mysql.real_connect('localhost','root') }
test.c_async_query = true
test.run!
end

View File

@ -1,12 +1,12 @@
require File.dirname(__FILE__) + '/test_helper'
ThreadedMysqlTest.new( 10 ) do |test|
test.setup{ Mysql.real_connect('localhost','root','3421260') }
test.setup{ Mysql.real_connect('localhost','root') }
test.run!
end
ThreadedMysqlTest.new( 10 ) do |test|
test.setup{ Mysql.real_connect('localhost','root','3421260') }
test.setup{ Mysql.real_connect('localhost','root') }
test.c_async_query = true
test.run!
end