mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-25 15:41:06 +00:00
11 lines
208 B
Python
11 lines
208 B
Python
|
|
||
|
from twisted.trial import unittest
|
||
|
|
||
|
from allmydata import queen
|
||
|
|
||
|
class Basic(unittest.TestCase):
|
||
|
def testLoadable(self):
|
||
|
q = queen.Queen()
|
||
|
q.startService()
|
||
|
return q.stopService()
|