mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-03-12 23:33:53 +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()
|