annotate vendor/pear/mail_mime/tests/class-filename.phpt @ 49:91f005a4f7e9
Slowly cleaning up more php8 Warnings/deprecations
| author |
Charlie Root |
| date |
Mon, 06 Oct 2025 12:19:59 -0400 |
| parents |
1e000243b222 |
| children |
|
| rev |
line source |
|
0
|
1 --TEST--
|
|
|
2 Test class filename (bug #24)
|
|
|
3 --SKIPIF--
|
|
|
4 <?php
|
|
|
5 echo "skip This will be broken until Mail_Mime2";
|
|
|
6 ?>
|
|
|
7 --FILE--
|
|
|
8 <?php
|
|
|
9 @include('Mail/Mime.php');
|
|
|
10 echo class_exists('Mail_Mime') ? 'Include OK' : 'Include failed';
|
|
|
11 ?>
|
|
|
12 --EXPECT--
|
|
|
13 Include OK
|