Rename tests to test in airtime_analyzer
This commit is contained in:
parent
a3a4e83c48
commit
5eb357520e
8 changed files with 0 additions and 0 deletions
17
python_apps/airtime_analyzer/tests/analyzer_test.py
Normal file
17
python_apps/airtime_analyzer/tests/analyzer_test.py
Normal file
|
@ -0,0 +1,17 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
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