libretime/analyzer/tests/analyzer_test.py

10 lines
218 B
Python

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