def test_make_connection_string_with_dsn(): connection_string = _make_connection_string('my_dsn', user='******') assert connection_string == 'dsn=my_dsn;user=my_user'
def test_make_connection_string_without_dsn(): connection_string = _make_connection_string(None, user="******") _test_connection_string(connection_string, "user=my_user")
def test_make_connection_string_without_dsn(): connection_string = _make_connection_string(None, user='******') assert connection_string == 'user=my_user'
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")
def test_make_connection_string_without_dsn(): connection_string = _make_connection_string(None, user='******') _test_connection_string(connection_string, 'user=my_user')
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')