require File.join(File.dirname(__FILE__), 'activerecord_test_connector') class ActiveRecordTestCase < Test::Unit::TestCase # Set our fixture path if ActiveRecordTestConnector.able_to_connect self.fixture_path = File.join(File.dirname(__FILE__), '..', 'fixtures') self.use_transactional_fixtures = false end def self.fixtures(*args) super if ActiveRecordTestConnector.connected end def run(*args) super if ActiveRecordTestConnector.connected end # Default so Test::Unit::TestCase doesn't complain def test_truth end end ActiveRecordTestConnector.setup