コード例 #1
0
ファイル: test_utils.py プロジェクト: splitgraph/pgsync
 def test_get_postgres_url(self):
     url = get_postgres_url('mydb')
     assert url.endswith('@localhost:5432/mydb')
     assert get_postgres_url(
         'mydb', user='******', password='******'
     ) == 'postgresql://*****:*****@localhost:5432/mydb'
     url = get_postgres_url('mydb', port=9999)
     assert url.endswith('@localhost:9999/mydb')
コード例 #2
0
ファイル: conftest.py プロジェクト: schnapper-admin/pgsync
def dns():
    return get_postgres_url("testdb")
コード例 #3
0
ファイル: conftest.py プロジェクト: hieuhani/pgsync
def dns():
    return get_postgres_url('testdb')