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' require File.dirname(__FILE__) + '/test_helper'
EventedMysqlTest.new( 10 ) do |test| EventedMysqlTest.new( 10 ) do |test|
test.setup{ Mysql.real_connect('localhost','root','3421260') } test.setup{ Mysql.real_connect('localhost','root') }
test.run! test.run!
end end
EventedMysqlTest.new( 10 ) do |test| 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.c_async_query = true
test.run! test.run!
end end

View File

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