mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-24 23:26:43 +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()
|