コード例 #1
0
def test_get_py_file_if_possible_with_pyc_file():
    assert get_py_file_if_possible(EXAMPLE_SOURCE + "c") == EXAMPLE_SOURCE
コード例 #2
0
ファイル: test_dependencies.py プロジェクト: jmrinaldi/sacred
def test_get_py_file_if_possible_with_pyc_but_nonexistent_py_file():
    assert get_py_file_if_possible('doesnotexist.pyc') == 'doesnotexist.pyc'
コード例 #3
0
def test_get_py_file_if_possible_with_pyc_but_nonexistent_py_file():
    assert get_py_file_if_possible("doesnotexist.pyc") == "doesnotexist.pyc"
コード例 #4
0
ファイル: test_dependencies.py プロジェクト: jmrinaldi/sacred
def test_get_py_file_if_possible_with_pyc_file():
    assert get_py_file_if_possible(EXAMPLE_SOURCE + 'c') == EXAMPLE_SOURCE