sintonia/python_apps/airtime_analyzer/tests/analyzer_test.py
jo 01fbd1e8b9 Add isort pre-commit hook
Sort import statement in python files

See https://github.com/PyCQA/isort
2021-06-05 00:39:35 +02:00

16 lines
255 B
Python

from airtime_analyzer.analyzer import Analyzer
from nose.tools import *
def setup():
pass
def teardown():
pass
@raises(NotImplementedError)
def test_analyze():
abstract_analyzer = Analyzer()
abstract_analyzer.analyze(u"foo", dict())