Mercurial > hg > rc1
annotate vendor/sabre/vobject/tests/VObject/Parser/MimeDirTest.php @ 43:771f6803cc4b default tip
somehow lost the correctly updated metadata so e.g. 'mail' package wasn't being imported
author | Charlie Root |
---|---|
date | Sun, 26 Jan 2025 13:13:49 -0500 |
parents | 430dbd5346f7 |
children |
rev | line source |
---|---|
7 | 1 <?php |
2 | |
3 namespace Sabre\VObject\Parser; | |
4 | |
5 /** | |
6 * Note that most MimeDir related tests can actually be found in the ReaderTest | |
7 * class one level up. | |
8 */ | |
9 class MimeDirTest extends \PHPUnit_Framework_TestCase { | |
10 | |
11 /** | |
12 * @expectedException \Sabre\VObject\ParseException | |
13 */ | |
14 function testParseError() { | |
15 | |
16 $mimeDir = new MimeDir(); | |
17 $mimeDir->parse(fopen(__FILE__,'a')); | |
18 | |
19 } | |
20 | |
21 } |