Sha256: c3fadef2b050511b805052dd8d1c8a02ca9199870608815022bc9e8d8a16c275

Contents?: true

Size: 947 Bytes

Versions: 3

Compression:

Stored size: 947 Bytes

Contents

$:.unshift(File.dirname(__FILE__) + '/../..')
$:.unshift(File.dirname(__FILE__) + '/../../lib')
schema_file = File.join(File.dirname(__FILE__), '..', 'schema.rb')


config = YAML::load(IO.read(File.join(File.dirname(__FILE__), '..', 'database.yml')))[ENV['DB'] || 'test']
ActiveRecord::Base.configurations = config
ActiveRecord::Base.establish_connection(config)

load(schema_file) if File.exist?(schema_file)

Test::Unit::TestCase.fixture_path = File.join(File.dirname(__FILE__), '..', 'fixtures')
$:.unshift(Test::Unit::TestCase.fixture_path)

class Test::Unit::TestCase #:nodoc:
    # Turn off transactional fixtures if you're working with MyISAM tables in MySQL
    self.use_transactional_fixtures = true
  
    # Instantiated fixtures are slow, but give you @david where you otherwise would need people(:david)
    self.use_instantiated_fixtures  = true

    # Add more helper methods to be used by all tests here...
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruboss4ruby-1.0.3 test/helpers/unit_test_helper.rb
ruboss4ruby-1.0.5 test/helpers/unit_test_helper.rb
ruboss4ruby-1.0.4 test/helpers/unit_test_helper.rb