CC-5709: Airtime Analyzer
* Fixed daemonization stuff for upstart * Adding missing unit test files
This commit is contained in:
parent
b02dc45a53
commit
b8b913ff68
4 changed files with 127 additions and 3 deletions
13
python_apps/airtime_analyzer/tests/analyzer_tests.py
Normal file
13
python_apps/airtime_analyzer/tests/analyzer_tests.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
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())
|
Loading…
Add table
Add a link
Reference in a new issue