Class: TestIngresDualConnections

Inherits:
Test::Unit::TestCase
  • Object
show all
Defined in:
ext/tests/tc_dual_connections.rb

Instance Method Summary collapse

Instance Method Details

#test_dual_connectionsObject



7
8
9
10
11
12
# File 'ext/tests/tc_dual_connections.rb', line 7

def test_dual_connections
  ing = Ingres.new()
  assert_kind_of(Ingres, ing.connect(@@database), "conn is not an Ingres object")
  ing2 = Ingres.new()
  assert_kind_of(Ingres, ing2.connect(@@database), "conn is not an Ingres object")
end