Index: postman/tests/daemon.py
===================================================================
--- postman/tests/daemon.py	(revision 5)
+++ postman/tests/daemon.py	(revision 6)
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
 
-import os
+import os, xmlrpclib
 from unittest import TestCase
 from postman.daemon import Postman
@@ -121,2 +121,18 @@
         # Clear the files created by the tests
         postman.clear()
+
+
+class TestPostmanDaemon(TestCase):
+    """
+    postman.daemon.PostmanDaemon tests.
+    
+    """
+    def setUp(self):
+        config = {'private': False, 'archive': '/tmp/postman-tests/archive',
+                  'storage': '/tmp/postman-tests/storage'}
+        self.mailing_list = MailingList('test_xmlrpc', 'test_xmlrpc@example.com',
+                                        members={}, config=config)
+        self.member =  Member('test@example.com')
+        # FIXME: Hardcoded url here, should be picked from a config file
+        
+        self.link = xmlrpclib.ServerProxy('http://localhost:9000')
