diff vendor/pear/mail_mime/tests/test_Bug_8541_1.phpt @ 0:1e000243b222

vanilla 1.3.3 distro, I hope
author Charlie Root
date Thu, 04 Jan 2018 15:50:29 -0500
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/vendor/pear/mail_mime/tests/test_Bug_8541_1.phpt	Thu Jan 04 15:50:29 2018 -0500
@@ -0,0 +1,19 @@
+--TEST--
+Bug #8541   mimePart.php line delimiter is \r
+--SKIPIF--
+--FILE--
+<?php
+$mime = file_get_contents('Mail/mime.php', 1);
+$mimePart = file_get_contents('Mail/mimePart.php', 1);
+if (strpos($mime, "\r")){
+    print("\\r found in mime.php\n");
+}elseif (strpos($mime, "\t")){
+    print("\\t found in mime.php\n");
+}elseif (strpos($mimePart, "\r")){
+    print("\\r found in mimePart.php\n");
+}elseif (strpos($mimePart, "\t")){
+    print("\\t found in mimePart.php\n");
+}
+print('OK');
+--EXPECT--
+OK