コード例 #1
0
def test_using(c: Client) -> None:
    assert c.using() == "default"
    c.use("another")
    assert c.using() == "another"
コード例 #2
0
ファイル: tests.py プロジェクト: raroldan/greenstalk
def test_using(c: Client) -> None:
    assert c.using() == 'default'
    c.use('another')
    assert c.using() == 'another'