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