From aab481efddce9501b125e995d82c50f03e08d6e7 Mon Sep 17 00:00:00 2001 From: uckelman Date: Sun, 21 Mar 2010 19:04:22 +0000 Subject: Building libs for Mailman and PhpBB3. git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6625 67b53d14-2c14-4ace-a08f-0dab2b34000c --- test/MailmanLibTest.php | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 test/MailmanLibTest.php (limited to 'test/MailmanLibTest.php') diff --git a/test/MailmanLibTest.php b/test/MailmanLibTest.php new file mode 100644 index 0000000..eeee160 --- /dev/null +++ b/test/MailmanLibTest.php @@ -0,0 +1,25 @@ +setExpectedException($ex); + $this->assertEquals($expected, read_raw_message($url)); + } + + public function provider_read_raw_message() { + return array( + array(__DIR__ . '/empty', null, 'PHPUnit_Framework_Error'), + array(__DIR__ . '/bougs', null, 'PHPUnit_Framework_Error'), + array(__DIR__ . '/1', file_get_contents(__DIR__ . '/1'), null), + ); + } +} + +?> -- cgit v1.2.3