actually add tests
This commit is contained in:
parent
efeea5e5e7
commit
798c06dc95
|
@ -0,0 +1,11 @@
|
|||
|
||||
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()
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
|
||||
from twisted.trial import unittest
|
||||
|
||||
from allmydata import queen
|
||||
|
||||
class Basic(unittest.TestCase):
|
||||
def testLoadable(self):
|
||||
q = queen.Queen()
|
||||
q.startService()
|
||||
return q.stopService()
|
Loading…
Reference in New Issue