コード例 #1
0
ファイル: test_ui.py プロジェクト: Marzona/rig-remote
def test_ok_1_is_valid_hostname():
    is_valid_hostname("www.google.com")
コード例 #2
0
ファイル: test_ui.py プロジェクト: Marzona/rig-remote
def test_ko_2_is_valid_hostname():
    with pytest.raises(ValueError):
        is_valid_hostname("")
コード例 #3
0
def test_is_valid_hostname():
    with pytest.raises(ValueError):
        is_valid_hostname("")
コード例 #4
0
ファイル: test_ui.py プロジェクト: Marzona/rig-remote
def test_ko_1_is_valid_hostname():
    with pytest.raises(gaierror):
        is_valid_hostname(" ")
コード例 #5
0
def test_ko_1_is_valid_hostname():
    with pytest.raises(gaierror):
        is_valid_hostname(" ")