コード例 #1
0
ファイル: test_utils.py プロジェクト: codeshard/videomorph
def test_which_non_existing_app():
    """Test for a non existing app."""
    assert utils.which('hypothetical_app') == None
コード例 #2
0
ファイル: test_utils.py プロジェクト: codeshard/videomorph
def test_which_null_arg():
    """Test for a null string param (raises a ValueError)."""
    utils.which('')
コード例 #3
0
ファイル: test_utils.py プロジェクト: codeshard/videomorph
def test_which_existing_app():
    """Test for an existing app."""
    assert utils.which('ls') == '/bin/ls' # Depends on your system