sintonia/python_apps/airtime_analyzer/tests/analyzer_tests.py

14 lines
252 B
Python

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