libretime/analyzer/tests/analyzer_test.py

10 lines
220 B
Python

import pytest
from libretime_analyzer.analyzer import Analyzer
def test_analyze():
with pytest.raises(NotImplementedError):
abstract_analyzer = Analyzer()
abstract_analyzer.analyze(u"foo", dict())