RUBY-351 test fix

This commit is contained in:
Kyle Banker 2011-11-15 15:58:51 -05:00
parent 93f228aaf1
commit fbadbe9977
1 changed files with 4 additions and 2 deletions

View File

@ -19,7 +19,8 @@ class GridTest < Test::Unit::TestCase
context "Grid classe with standard connections" do
setup do
@conn.expects(:slave_ok?).returns(false)
@conn.expects(:class).returns(Connection)
@conn.expects(:read_primary?).returns(true)
end
should "create indexes for Grid" do
@ -36,7 +37,8 @@ class GridTest < Test::Unit::TestCase
context "Grid classes with slave connection" do
setup do
@conn.expects(:slave_ok?).returns(true)
@conn.expects(:class).twice.returns(Connection)
@conn.expects(:read_primary?).returns(false)
end
should "not create indexes for Grid" do