示例#1
0
def test_incorrect_login() -> None:
    d = Docker()
    with pytest.raises(Exception):
        d.login(password="******")
示例#2
0
def test_login() -> None:
    d = Docker()
    d.login()