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