Sha256: d745a610ca5952eacad2809f41799bcbb7284f5debf5926ef0794b35844e8bbb

Contents?: true

Size: 520 Bytes

Versions: 1

Compression:

Stored size: 520 Bytes

Contents

module TestConfig

  # The path to the library

  LIB_PATH = "../lib/sqlpostgres"

  # The name of the database to use for testing.

  TEST_DB_NAME = "sqlpostgres_test"

  # The database port to use for testing.

  TEST_DB_PORT = ENV['PGPORT'] || 5432

  # The prefix for temporary database objects.

  TEST_DB_PREFIX = "SQLPOSTGRES_TEST_"

  # Encodings

  TEST_CLIENT_ENCODING = 'SQL_ASCII'
  TEST_DB_ENCODING = 'SQL_ASCII'

end

# Local Variables:
# tab-width: 2
# ruby-indent-level: 2
# indent-tabs-mode: nil
# End:

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sqlpostgres-1.3.0 test/TestConfig.rb