let DEV_2 be trunk
[m6w6/ext-http] / tests / send_file_006.phpt
diff --git a/tests/send_file_006.phpt b/tests/send_file_006.phpt
deleted file mode 100644 (file)
index 1b93319..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
---TEST--
-http_send_file() first/last byte range
---SKIPIF--
-<?php 
-include 'skip.inc';
-checkcgi();
-checkmin("5.2.5");
-?>
---ENV--
-HTTP_RANGE=bytes=0-0,-1
---FILE--
-<?php
-http_send_content_type("text/plain");
-http_send_file('data.txt');
-?>
---EXPECTF--
-Status: 206%s
-X-Powered-By: PHP/%s
-Accept-Ranges: bytes
-Content-Type: multipart/byteranges; boundary=%d.%d
-
-
---%d.%d
-Content-Type: text/plain
-Content-Range: bytes 0-0/1010
-
-0
---%d.%d
-Content-Type: text/plain
-Content-Range: bytes 1009-1009/1010
-
-
-
---%d.%d--