9 lines
220 B
Python
9 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())
|