13 lines
252 B
Python
13 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())
|