Index: branches/pap/Nebulous-Server/t/02_config.t
===================================================================
--- branches/pap/Nebulous-Server/t/02_config.t	(revision 23948)
+++ branches/pap/Nebulous-Server/t/02_config.t	(revision 25027)
@@ -8,5 +8,5 @@
 use warnings;
 
-use Test::More tests => 21;
+use Test::More tests => 22;
 
 use lib qw( ./t ./lib );
@@ -109,2 +109,11 @@
     is($config_db1->dbpasswd, "boo2", "dbpasswd");
 }
+
+# memcached_servers
+{
+    my $config = Nebulous::Server::Config->new(
+            memcached_servers => ['127.0.0.1:11211'],
+        );
+
+    is_deeply($config->memcached_servers, ['127.0.0.1:11211'], "memcached_servers");
+}
