2006-11-30 23:23:01 +00:00
|
|
|
|
|
|
|
from twisted.trial import unittest
|
|
|
|
|
|
|
|
from allmydata import client
|
|
|
|
|
|
|
|
class Basic(unittest.TestCase):
|
|
|
|
def testLoadable(self):
|
2006-12-01 00:13:40 +00:00
|
|
|
c = client.Client("")
|
2006-11-30 23:23:01 +00:00
|
|
|
c.startService()
|
|
|
|
return c.stopService()
|
|
|
|
|