Sha256: a29182cdbe03ee9761f1faa3f5cc31005d9caf21266449414e892ea82fad1c12

Contents?: true

Size: 598 Bytes

Versions: 19

Compression:

Stored size: 598 Bytes

Contents

TEST_MYSQL_HOST = '127.0.0.1'
TEST_MYSQL_PORT = ENV['MYSQL57'] == '1' ? 3307 : 3306
TEST_MYSQL_USER = 'root'
TEST_MYSQL_PASS = 'password'

MYSQL_CLI = "mysql -h #{TEST_MYSQL_HOST} -P #{TEST_MYSQL_PORT} -u #{TEST_MYSQL_USER} -p#{TEST_MYSQL_PASS} 2>/dev/null"

TEST_PG_HOST = '127.0.0.1'
TEST_PG_PORT = 5432
TEST_PG_USER = 'postgres'
TEST_PG_PASS = 'password'

PG_CLI_OPTS = "PGPASSWORD=#{TEST_PG_PASS} %s -h #{TEST_PG_HOST} -p #{TEST_PG_PORT} -U #{TEST_PG_USER}"
PG_PSQL = PG_CLI_OPTS % 'psql'
PG_CREATEDB = PG_CLI_OPTS % 'createdb'
PG_DUMP = PG_CLI_OPTS % 'pg_dump'

TEST_SCHEMA = 'ridgepole_test'

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
ridgepole-0.7.0.beta18 spec/spec_const.rb
ridgepole-0.7.0.beta17 spec/spec_const.rb
ridgepole-0.7.0.beta16 spec/spec_const.rb
ridgepole-0.7.0.beta15 spec/spec_const.rb
ridgepole-0.7.0.beta14 spec/spec_const.rb
ridgepole-0.7.0.beta13 spec/spec_const.rb
ridgepole-0.7.0.beta12 spec/spec_const.rb
ridgepole-0.7.0.beta11 spec/spec_const.rb
ridgepole-0.7.0.beta10 spec/spec_const.rb
ridgepole-0.7.0.beta9 spec/spec_const.rb
ridgepole-0.7.0.beta8 spec/spec_const.rb
ridgepole-0.7.0.beta7 spec/spec_const.rb
ridgepole-0.7.0.beta6 spec/spec_const.rb
ridgepole-0.7.0.beta5 spec/spec_const.rb
ridgepole-0.7.0.beta4 spec/spec_const.rb
ridgepole-0.7.0.beta3 spec/spec_const.rb
ridgepole-0.7.0.beta2 spec/spec_const.rb
ridgepole-0.7.0.beta spec/spec_const.rb
ridgepole-0.7.0.alpha3 spec/spec_const.rb