Sha256: e168f4e3a9f6de7b68f7d5accb47898686c8cd94131d56dd8202cafeee5f28c8

Contents?: true

Size: 563 Bytes

Versions: 14

Compression:

Stored size: 563 Bytes

Contents

TEST_MYSQL_HOST = '127.0.0.1'
TEST_MYSQL_PORT = 3306
TEST_MYSQL_USER = 'root'
TEST_MYSQL_PASS = 'password'

MYSQL_CLI = "MYSQL_PWD=#{TEST_MYSQL_PASS} mysql -h #{TEST_MYSQL_HOST} -P #{TEST_MYSQL_PORT} -u #{TEST_MYSQL_USER}"

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

14 entries across 14 versions & 1 rubygems

Version Path
ridgepole-0.6.5.beta14 spec/spec_const.rb
ridgepole-0.6.5.beta13 spec/spec_const.rb
ridgepole-0.6.5.beta12 spec/spec_const.rb
ridgepole-0.6.5.beta11 spec/spec_const.rb
ridgepole-0.6.5.beta10 spec/spec_const.rb
ridgepole-0.6.5.beta9 spec/spec_const.rb
ridgepole-0.6.5.beta8 spec/spec_const.rb
ridgepole-0.6.5.beta7 spec/spec_const.rb
ridgepole-0.6.5.beta6 spec/spec_const.rb
ridgepole-0.6.5.beta5 spec/spec_const.rb
ridgepole-0.6.5.beta4 spec/spec_const.rb
ridgepole-0.6.5.beta3 spec/spec_const.rb
ridgepole-0.6.5.beta2 spec/spec_const.rb
ridgepole-0.6.5.beta spec/spec_const.rb