diff js.t @ 1810:7cf848422b28

Tests: removed remaining njs version checks older than 0.6.0.
author Dmitry Volyntsev <xeioex@nginx.com>
date Fri, 02 Dec 2022 17:46:16 -0800
parents e55aa7021ea5
children 520fb74cce4c
line wrap: on
line diff
--- a/js.t
+++ b/js.t
@@ -284,10 +284,6 @@ like(http_get('/return_method?c=301&t=pa
 like(http_get('/return_method?c=404'), qr/404 Not.*html/s, 'return error page');
 like(http_get('/return_method?c=inv'), qr/ 500 /, 'return invalid');
 
-TODO: {
-local $TODO = 'not yet'
-	unless http_get('/njs') =~ /^([.0-9]+)$/m && $1 ge '0.5.0';
-
 like(http_get('/type?path=variables.host'), qr/200 OK.*type: string$/s,
 	'variables type');
 like(http_get('/type?path=rawVariables.host'), qr/200 OK.*type: buffer$/s,
@@ -300,8 +296,6 @@ like(http_post('/type?path=requestBuffer
 like(http_post('/request_body_cache'),
 	qr/requestText:string requestBuffer:buffer$/s, 'request body cache');
 
-}
-
 like(http_get('/var'), qr/variable=127.0.0.1/, 'r.variables');
 like(http_get('/global'), qr/global=njs/, 'global code');
 like(http_get('/log'), qr/200 OK/, 'r.log');