* Added StatusReporter class to make HTTP requests back to Airtime * Handle even more errors now * Added proper logging and log rotation * Added --debug flag for increased logging.
12 lines
161 B
Python
12 lines
161 B
Python
from nose.tools import *
|
|
import airtime_analyzer
|
|
|
|
def setup():
|
|
print "SETUP!"
|
|
|
|
def teardown():
|
|
print "TEAR DOWN!"
|
|
|
|
def test_basic():
|
|
print "I RAN!"
|
|
|