Rename tests to test in airtime_analyzer

This commit is contained in:
jo 2021-05-27 17:39:10 +02:00
parent a3a4e83c48
commit 5eb357520e
8 changed files with 0 additions and 0 deletions

View 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())