Sha256: f122100c22a3723af37df36724a8d7ef3adcc5b82ebf615b5ecddf68a1279422
Contents?: true
Size: 1.62 KB
Versions: 3
Compression:
Stored size: 1.62 KB
Contents
# Include this file in your test by copying the following line to your test: # require File.expand_path(File.dirname(__FILE__) + "/test_helper") $:.unshift(File.dirname(__FILE__) + '/../lib') RAILS_ROOT = File.dirname(__FILE__) require 'test/unit' require 'active_record' require 'active_record/fixtures' require "#{File.dirname(__FILE__)}/../init" require File.expand_path(File.dirname(__FILE__) + "/muskrat") config = YAML::load(IO.read(File.dirname(__FILE__) + '/database.yml')) ActiveRecord::Base.logger = Logger.new(File.dirname(__FILE__) + "/debug.log") ActiveRecord::Base.establish_connection(config[ENV['DB'] || 'sqlite3']) load(File.dirname(__FILE__) + "/schema.rb") if File.exist?(File.dirname(__FILE__) + "/schema.rb") class ActiveSupport::TestCase #:nodoc: include ActiveRecord::TestFixtures # def create_fixtures(*table_names) # if block_given? # Fixtures.create_fixtures(Test::Unit::TestCase.fixture_path, table_names) { yield } # else # Fixtures.create_fixtures(Test::Unit::TestCase.fixture_path, table_names) # end # end self.fixture_path = File.dirname(__FILE__) + "/fixtures/" $LOAD_PATH.unshift(fixture_path) # 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 = false # Add more helper methods to be used by all tests here... def monitor_for(class_name) result = class_name result += '.unscoped' if ActiveRecord::VERSION::MAJOR >= 3 result += '.count' end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
permanent_records-2.1.2 | test/test_helper.rb |
permanent_records-2.1.1 | test/test_helper.rb |
permanent_records-2.1.0 | test/test_helper.rb |