* Finished the skeleton of the airtime_analyzer service. * Basic round-robin, reliable AMQP messaging works. * Using multiprocess arch so the daemon survives analyzer crashes and avoids failures propagating to other nodes. * Basic metadata extractor using Mutagen is done. * HTTP requests to the File API to are next to come...
12 lines
167 B
Python
12 lines
167 B
Python
from nose.tools import *
|
|
import airtime_analyzer_queue
|
|
|
|
def setup():
|
|
print "SETUP!"
|
|
|
|
def teardown():
|
|
print "TEAR DOWN!"
|
|
|
|
def test_basic():
|
|
print "I RAN!"
|
|
|