Tests: added xslt filter tests with ranges.
diff --git a/xslt.t b/xslt.t
index 1516e97..b21bc4c 100644
--- a/xslt.t
+++ b/xslt.t
@@ -21,7 +21,7 @@
 select STDERR; $| = 1;
 select STDOUT; $| = 1;
 
-my $t = Test::Nginx->new()->has(qw/http xslt/)->plan(6);
+my $t = Test::Nginx->new()->has(qw/http xslt/)->plan(8);
 
 $t->write_file_expand('nginx.conf', <<'EOF');
 
@@ -127,4 +127,20 @@
 
 }
 
+# xslt and ranges
+
+TODO: {
+local $TODO = 'not yet' unless $t->has_version('1.19.2');
+
+unlike(http_get("/x1"), qr!Accept-Ranges!, 'no Accept-Ranges');
+like(http(<<EOF), qr!200 OK.*test xslt result!ms, 'no ranges');
+GET /x1 HTTP/1.1
+Host: localhost
+Connection: close
+Range: bytes=-10
+
+EOF
+
+}
+
 ###############################################################################