Sha256: fb5516a21ca5bcd878b8cc5a0f2a661b33e094810999b3bbed188e402300bd03

Contents?: true

Size: 701 Bytes

Versions: 2

Compression:

Stored size: 701 Bytes

Contents

# Used by spec helper to build test databases
# These entires can be used in call to db_connect ( see spec_helper )

<% adapter = 'sqlite3' %>
<% adapter = 'jdbcsqlite3' if(Guards::jruby? ) %>

test_mysql:
  adapter: jdbcmysql
  database: datashift_test_models_db
  username: test
  password: test
  host: localhost

test_memory:
  adapter: <%= adapter %>
  database: :memory

test_file:
  adapter: <%= adapter %>
  database: <%= File.join(fixtures_path(), 'db', 'datashift_test_models_db.sqlite') %>
  encoding: utf8
  host: localhost

test_spree_standalone:
  adapter: <%= adapter %>
  database: <%= File.join(fixtures_path(), 'db', 'datashift_Spree_db.sqlite') %>
  encoding: utf8
  host: localhost

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
datashift-0.10.1 spec/fixtures/config/database.yml
datashift-0.10.0 spec/fixtures/config/database.yml