comparison memcached.t @ 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 ec7903def1bb
children 9a5fab7c0dec
comparison
equal deleted inserted replaced
60:11e33ba0656a 61:74f276d0fca1
70 70
71 my $memd = Cache::Memcached->new(servers => [ '127.0.0.1:8081' ]); 71 my $memd = Cache::Memcached->new(servers => [ '127.0.0.1:8081' ]);
72 $memd->set('/', 'SEE-THIS'); 72 $memd->set('/', 'SEE-THIS');
73 73
74 like(http_get('/'), qr/SEE-THIS/, 'memcached request'); 74 like(http_get('/'), qr/SEE-THIS/, 'memcached request');
75
76 TODO: {
77 local $TODO = 'broken since 0.7.18';
78
75 like(http_get('/notfound'), qr/404/, 'memcached not found'); 79 like(http_get('/notfound'), qr/404/, 'memcached not found');
80 }
81
76 like(http_get('/next'), qr/404/, 'not found with memcached_next_upstream'); 82 like(http_get('/next'), qr/404/, 'not found with memcached_next_upstream');
77 83
78 unlike(http_head('/'), qr/SEE-THIS/, 'memcached no data in HEAD'); 84 unlike(http_head('/'), qr/SEE-THIS/, 'memcached no data in HEAD');
79 85
80 ############################################################################### 86 ###############################################################################