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