mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-23 14:52:26 +00:00
12 lines
214 B
Python
12 lines
214 B
Python
|
|
from twisted.trial import unittest
|
|
|
|
from allmydata import client
|
|
|
|
class Basic(unittest.TestCase):
|
|
def testLoadable(self):
|
|
c = client.Client("")
|
|
c.startService()
|
|
return c.stopService()
|
|
|