コード例 #1
0
ファイル: test_native.py プロジェクト: sdesrozis/ignite
def test_expand_hostlist_unvalid():
    with pytest.raises(ValueError, match=r"hostlist unvalid"):
        _expand_hostlist("unvalid[]")
コード例 #2
0
ファイル: test_native.py プロジェクト: sdesrozis/ignite
def test_expand_hostlist(hostlist, expected):
    assert _expand_hostlist(hostlist) == expected.split(",")