changeset 61:74f276d0fca1

Tests: mark memcached notfound test as TODO, broken for too long.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 12 Jan 2009 22:27:39 +0300
parents 11e33ba0656a
children 9a5fab7c0dec
files memcached.t
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/memcached.t
+++ b/memcached.t
@@ -72,7 +72,13 @@ my $memd = Cache::Memcached->new(servers
 $memd->set('/', 'SEE-THIS');
 
 like(http_get('/'), qr/SEE-THIS/, 'memcached request');
+
+TODO: {
+local $TODO = 'broken since 0.7.18';
+
 like(http_get('/notfound'), qr/404/, 'memcached not found');
+}
+
 like(http_get('/next'), qr/404/, 'not found with memcached_next_upstream');
 
 unlike(http_head('/'), qr/SEE-THIS/, 'memcached no data in HEAD');