changeset 522:5b5ef52d6fd2

Tests: removed use_temp_path TODOs. The tests are skipped on the stable branch.
author Sergey Kandaurov <pluknet@nginx.com>
date Mon, 02 Feb 2015 19:50:52 +0300
parents 6b9bfe18fdc8
children 64eabe6aa1f2
files proxy_cache_path.t
diffstat 1 files changed, 0 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/proxy_cache_path.t
+++ b/proxy_cache_path.t
@@ -78,26 +78,14 @@ EOF
 
 like(http_get('/t?c=ON'), qr/MISS.*SEE-THIS/ms, 'temp path');
 like(http_get('/t?c=OFF'), qr/MISS.*SEE-THIS/ms, 'temp path off');
-
-TODO: {
-local $TODO = 'not yet';
-
 like(http_get('/t?c=LEVELS'), qr/MISS.*SEE-THIS/ms, 'temp path levels');
 
-}
-
 $t->write_file('t', 'SEE-THAT');
 
 like(http_get('/t?c=ON'), qr/HIT.*SEE-THIS/ms, 'temp path cached');
 like(http_get('/t?c=OFF'), qr/HIT.*SEE-THIS/ms, 'temp path cached off');
-
-TODO: {
-local $TODO = 'not yet';
-
 like(http_get('/t?c=LEVELS'), qr/HIT.*SEE-THIS/ms, 'temp path cached levels');
 
-}
-
 like(`grep -F '[alert]' ${\($t->testdir())}/error.log`, qr/^$/s, 'no alerts');
 
 ###############################################################################