diff --git a/allmydata/test/__init__.py b/allmydata/test/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/allmydata/test/test_client.py b/allmydata/test/test_client.py new file mode 100644 index 000000000..1c1c662db --- /dev/null +++ b/allmydata/test/test_client.py @@ -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() + diff --git a/allmydata/test/test_queen.py b/allmydata/test/test_queen.py new file mode 100644 index 000000000..f93137046 --- /dev/null +++ b/allmydata/test/test_queen.py @@ -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()