mitmproxy/test/mitmproxy/utils/test_data.py
2016-10-25 20:45:48 -07:00

8 lines
195 B
Python

import pytest
from mitmproxy.utils import data
def test_pkg_data():
assert data.pkg_data.path("tools/console")
with pytest.raises(ValueError):
data.pkg_data.path("nonexistent")