#!/usr/bin/perl ############################################################################### use warnings; use strict; use Test::More; BEGIN { use FindBin; chdir($FindBin::Bin); } use lib 'lib'; use Test::Nginx; ############################################################################### select STDERR; $| = 1; select STDOUT; $| = 1; my $t = Test::Nginx->new()->has(qw/http/) ->write_file_expand('nginx.conf', <<'EOF'); %%TEST_GLOBALS%% daemon off; events { } http { %%TEST_GLOBALS_HTTP%% js_import test.js; server { listen 127.0.0.1:8080; server_name localhost; location /time { js_content test.time; } } } EOF $t->write_file('test.js', <try_run('no njs console')->plan(1); ############################################################################### http_get('/time?delay=7&timer=foo&timer1=barrr'); $t->stop(); ###############################################################################