Sha256: 81d65f3fd8cc018b5c3a10d3e213de9b1a1cef16dd61deffbf0d0406fff3b16f

Contents?: true

Size: 868 Bytes

Versions: 2

Compression:

Stored size: 868 Bytes

Contents

require 'pathname'
# require 'rubygems' # read [ http://gist.github.com/54177 ] to understand why this line is commented out

# require 'spec'
require 'dm-validations'
require 'dm-migrations'
require Pathname(__FILE__).dirname.expand_path.parent + 'lib/dm-is-published'

def load_driver(name, default_uri)
  return false if ENV['ADAPTER'] != name.to_s

  begin
    DataMapper.setup(name, ENV["#{name.to_s.upcase}_SPEC_URI"] || default_uri)
    DataMapper::Repository.adapters[:default] =  DataMapper::Repository.adapters[name]
    true
  rescue LoadError => e
    warn "Could not load do_#{name}: #{e}"
    false
  end
end

ENV['ADAPTER'] ||= 'sqlite3'

HAS_SQLITE3  = load_driver(:sqlite3,  'sqlite3::memory:')
HAS_MYSQL    = load_driver(:mysql,    'mysql://localhost/dm_core_test')
HAS_POSTGRES = load_driver(:postgres, 'postgres://postgres@localhost/dm_core_test')

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dm-is-published-0.0.6 spec/spec_helper.rb
dm-is-published-0.0.5 spec/spec_helper.rb