summaryrefslogtreecommitdiff
path: root/ext/mailparse/tests/002.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mailparse/tests/002.phpt')
-rw-r--r--ext/mailparse/tests/002.phpt22
1 files changed, 0 insertions, 22 deletions
diff --git a/ext/mailparse/tests/002.phpt b/ext/mailparse/tests/002.phpt
deleted file mode 100644
index 81f7405260..0000000000
--- a/ext/mailparse/tests/002.phpt
+++ /dev/null
@@ -1,22 +0,0 @@
---TEST--
-Check stream encoding
---SKIPIF--
-<?php if (!extension_loaded("mailparse")) print "skip"; ?>
---POST--
---GET--
---FILE--
-<?php
-$text = <<<EOD
-hello, this is some text=hello.
-EOD;
-$fp = tmpfile();
-fwrite($fp, $text);
-rewind($fp);
-$dest = tmpfile();
-mailparse_stream_encode($fp, $dest, "quoted-printable");
-rewind($dest);
-$data = fread($dest, 2048);
-echo $data;
-?>
---EXPECT--
-hello, this is some text=3Dhello.