示例#1
0
def test_make_connection_string_with_dsn():
    connection_string = _make_connection_string('my_dsn', user='******')
    assert connection_string == 'dsn=my_dsn;user=my_user'
示例#2
0
def test_make_connection_string_without_dsn():
    connection_string = _make_connection_string(None, user="******")
    _test_connection_string(connection_string, "user=my_user")
示例#3
0
def test_make_connection_string_without_dsn():
    connection_string = _make_connection_string(None, user='******')
    assert connection_string == 'user=my_user'
示例#4
0
def test_make_connection_string_with_dsn():
    connection_string = _make_connection_string("my_dsn", user="******")
    _test_connection_string(connection_string, "dsn=my_dsn;user=my_user")
示例#5
0
def test_make_connection_string_without_dsn():
    connection_string = _make_connection_string(None, user='******')
    _test_connection_string(connection_string, 'user=my_user')
示例#6
0
def test_make_connection_string_with_dsn():
    connection_string = _make_connection_string('my_dsn', user='******')
    _test_connection_string(connection_string, 'dsn=my_dsn;user=my_user')
示例#7
0
def test_make_connection_string_without_dsn():
    connection_string = _make_connection_string(None, user='******')
    _test_connection_string(connection_string, 'user=my_user')
示例#8
0
def test_make_connection_string_with_dsn():
    connection_string = _make_connection_string('my_dsn', user='******')
    _test_connection_string(connection_string, 'dsn=my_dsn;user=my_user')