예제 #1
0
def test_using(c: Client) -> None:
    assert c.using() == "default"
    c.use("another")
    assert c.using() == "another"
예제 #2
0
def test_using(c: Client) -> None:
    assert c.using() == 'default'
    c.use('another')
    assert c.using() == 'another'