Sha256: 1e4ef3740f855f67e032875007e58f089fc241a01578e8d52480e0c6d2e2d047
Contents?: true
Size: 1.71 KB
Versions: 1
Compression:
Stored size: 1.71 KB
Contents
require 'rubygems' require 'dm-core' require 'dm-is-remixable' require 'dm-validations' require 'dm-accepts_nested_attributes' # Support running specs with 'rake spec' and 'spec' $LOAD_PATH.unshift('lib') unless $LOAD_PATH.include?('lib') require 'dm-is-localizable' ENV["SQLITE3_SPEC_URI"] ||= 'sqlite3::memory:' ENV["MYSQL_SPEC_URI"] ||= 'mysql://localhost/dm-is_localizable_test' ENV["POSTGRES_SPEC_URI"] ||= 'postgres://postgres@localhost/dm-is_localizable_test' def setup_adapter(name, default_uri = nil) begin DataMapper.setup(name, ENV["#{ENV['ADAPTER'].to_s.upcase}_SPEC_URI"] || default_uri) Object.const_set('ADAPTER', ENV['ADAPTER'].to_sym) if name.to_s == ENV['ADAPTER'] true rescue Exception => e if name.to_s == ENV['ADAPTER'] Object.const_set('ADAPTER', nil) warn "Could not load do_#{name}: #{e}" end false end end # have the loggers handy # DataObjects::Logger.new(STDOUT, :debug) # DataObjects::Sqlite3.logger = DataObjects::Logger.new(STDOUT, :debug) # ----------------------------------------------- # support for nice html output in rspec tmbundle # ----------------------------------------------- USE_TEXTMATE_RSPEC_BUNDLE = true # set to false if not using textmate if USE_TEXTMATE_RSPEC_BUNDLE require Pathname(__FILE__).dirname.expand_path + 'lib/rspec_tmbundle_support' # use the tmbundle logger #RSpecTmBundleHelpers::TextmateRspecLogger.new(STDOUT, :off) class Object include RSpecTmBundleHelpers end end ENV['ADAPTER'] ||= 'sqlite3' setup_adapter(:default) Dir[Pathname(__FILE__).dirname.to_s + "/fixtures/**/*.rb"].each { |rb| require(rb) } Spec::Runner.configure do |config| config.before(:each) do DataMapper.auto_migrate! end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dm-is-localizable-0.10.1 | spec/spec_helper.rb |