no need for simplepie test suite

This commit is contained in:
Mike Macgirvin 2010-07-05 03:36:10 -07:00
commit 3713a9291c
849 changed files with 0 additions and 19344 deletions

View file

@ -1 +0,0 @@
The tests enclosed within come from RFC 3986 section 5.4 and all share the same base URL

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Abnormal_1 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = '../../../g';
}
function expected()
{
$this->expected = 'http://a/g';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Abnormal_10 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = './g/.';
}
function expected()
{
$this->expected = 'http://a/b/c/g/';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Abnormal_11 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = 'g/./h';
}
function expected()
{
$this->expected = 'http://a/b/c/g/h';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Abnormal_12 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = 'g/../h';
}
function expected()
{
$this->expected = 'http://a/b/c/h';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Abnormal_13 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = 'g;x=1/./y';
}
function expected()
{
$this->expected = 'http://a/b/c/g;x=1/y';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Abnormal_14 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = 'g;x=1/../y';
}
function expected()
{
$this->expected = 'http://a/b/c/y';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Abnormal_15 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = 'g?y/./x';
}
function expected()
{
$this->expected = 'http://a/b/c/g?y/./x';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Abnormal_16 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = 'g?y/../x';
}
function expected()
{
$this->expected = 'http://a/b/c/g?y/../x';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Abnormal_17 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = 'g#s/./x';
}
function expected()
{
$this->expected = 'http://a/b/c/g#s/./x';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Abnormal_18 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = 'g#s/../x';
}
function expected()
{
$this->expected = 'http://a/b/c/g#s/../x';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Abnormal_19 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = 'http:g';
}
function expected()
{
$this->expected = 'http:g';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Abnormal_2 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = '../../../../g';
}
function expected()
{
$this->expected = 'http://a/g';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Abnormal_3 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = '/./g';
}
function expected()
{
$this->expected = 'http://a/g';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Abnormal_4 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = '/../g';
}
function expected()
{
$this->expected = 'http://a/g';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Abnormal_5 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = 'g.';
}
function expected()
{
$this->expected = 'http://a/b/c/g.';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Abnormal_6 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = '.g';
}
function expected()
{
$this->expected = 'http://a/b/c/.g';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Abnormal_7 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = 'g..';
}
function expected()
{
$this->expected = 'http://a/b/c/g..';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Abnormal_8 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = '..g';
}
function expected()
{
$this->expected = 'http://a/b/c/..g';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Abnormal_9 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = './../g';
}
function expected()
{
$this->expected = 'http://a/b/g';
}
}
?>

View file

@ -1,25 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986 extends SimplePie_Absolutize_Test
{
function SimplePie_Absolutize_Test_RFC3986()
{
// Ugly hack so it only applies to this and none of its children
if (!is_subclass_of($this, 'SimplePie_Absolutize_Test_RFC3986'))
{
$this->test = false;
}
// Only call the parent constructor if it exists
if (is_callable(array('parent', 'SimplePie_Absolutize_Test')))
{
parent::SimplePie_Absolutize_Test();
}
}
function init()
{
$this->data['base'] = 'http://a/b/c/d;p?q';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_1 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = 'g:h';
}
function expected()
{
$this->expected = 'g:h';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_10 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = 'g#s';
}
function expected()
{
$this->expected = 'http://a/b/c/g#s';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_11 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = 'g?y#s';
}
function expected()
{
$this->expected = 'http://a/b/c/g?y#s';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_12 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = ';x';
}
function expected()
{
$this->expected = 'http://a/b/c/;x';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_13 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = 'g;x';
}
function expected()
{
$this->expected = 'http://a/b/c/g;x';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_14 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = 'g;x?y#s';
}
function expected()
{
$this->expected = 'http://a/b/c/g;x?y#s';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_15 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = '';
}
function expected()
{
$this->expected = 'http://a/b/c/d;p?q';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_16 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = '.';
}
function expected()
{
$this->expected = 'http://a/b/c/';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_17 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = './';
}
function expected()
{
$this->expected = 'http://a/b/c/';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_18 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = '..';
}
function expected()
{
$this->expected = 'http://a/b/';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_19 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = '../';
}
function expected()
{
$this->expected = 'http://a/b/';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_2 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = 'g';
}
function expected()
{
$this->expected = 'http://a/b/c/g';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_20 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = '../g';
}
function expected()
{
$this->expected = 'http://a/b/g';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_21 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = '../..';
}
function expected()
{
$this->expected = 'http://a/';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_22 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = '../../';
}
function expected()
{
$this->expected = 'http://a/';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_23 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = '../../g';
}
function expected()
{
$this->expected = 'http://a/g';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_3 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = './g';
}
function expected()
{
$this->expected = 'http://a/b/c/g';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_4 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = 'g/';
}
function expected()
{
$this->expected = 'http://a/b/c/g/';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_5 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = '/g';
}
function expected()
{
$this->expected = 'http://a/g';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_6 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = '//g';
}
function expected()
{
$this->expected = 'http://g';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_7 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = '?y';
}
function expected()
{
$this->expected = 'http://a/b/c/d;p?y';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_8 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = 'g?y';
}
function expected()
{
$this->expected = 'http://a/b/c/g?y';
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_9 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = '#s';
}
function expected()
{
$this->expected = 'http://a/b/c/d;p?q#s';
}
}
?>

View file

@ -1,17 +0,0 @@
<?php
class SimplePie_Absolutize_Test_Bug_1091_Test_0_1 extends SimplePie_Absolutize_Test
{
function data()
{
$this->data['base'] = 'http://example.com';
$this->data['relative'] = '//example.net';
}
function expected()
{
$this->expected = 'http://example.net';
}
}
?>

View file

@ -1,17 +0,0 @@
<?php
class SimplePie_Absolutize_Test_Bug_1091_Test_0 extends SimplePie_Absolutize_Test
{
function data()
{
$this->data['base'] = 'http:g';
$this->data['relative'] = 'a';
}
function expected()
{
$this->expected = 'http:a';
}
}
?>

View file

@ -1,17 +0,0 @@
<?php
class SimplePie_Absolutize_Test_Bug_274_Test_0 extends SimplePie_Absolutize_Test
{
function data()
{
$this->data['base'] = 'http://a/b/';
$this->data['relative'] = 'c';
}
function expected()
{
$this->expected = 'http://a/b/c';
}
}
?>

View file

@ -1,17 +0,0 @@
<?php
class SimplePie_Absolutize_Test_Bug_274_Test_1 extends SimplePie_Absolutize_Test
{
function data()
{
$this->data['base'] = 'http://a/';
$this->data['relative'] = 'b';
}
function expected()
{
$this->expected = 'http://a/b';
}
}
?>

View file

@ -1,17 +0,0 @@
<?php
class SimplePie_Absolutize_Test_Bug_274_Test_2 extends SimplePie_Absolutize_Test
{
function data()
{
$this->data['base'] = 'http://a/';
$this->data['relative'] = '/b';
}
function expected()
{
$this->expected = 'http://a/b';
}
}
?>

View file

@ -1,17 +0,0 @@
<?php
class SimplePie_Absolutize_Test_Bug_274_Test_3 extends SimplePie_Absolutize_Test
{
function data()
{
$this->data['base'] = 'http://a/b';
$this->data['relative'] = 'c';
}
function expected()
{
$this->expected = 'http://a/c';
}
}
?>

View file

@ -1,17 +0,0 @@
<?php
class SimplePie_Absolutize_Test_Bug_579_Test_0 extends SimplePie_Absolutize_Test
{
function data()
{
$this->data['base'] = 'http://a/b/';
$this->data['relative'] = "b\x0Ac";
}
function expected()
{
$this->expected = 'http://a/b/b%0Ac';
}
}
?>

View file

@ -1,17 +0,0 @@
<?php
class SimplePie_Absolutize_Test_Bug_691_Test_0 extends SimplePie_Absolutize_Test
{
function data()
{
$this->data['base'] = 'http://a/b/c';
$this->data['relative'] = 'zero://a/b/c';
}
function expected()
{
$this->expected = 'zero://a/b/c';
}
}
?>

View file

@ -1,17 +0,0 @@
<?php
class SimplePie_Absolutize_Test_Bug_691_Test_1 extends SimplePie_Absolutize_Test
{
function data()
{
$this->data['base'] = 'http://a/b/c';
$this->data['relative'] = '//0';
}
function expected()
{
$this->expected = 'http://0';
}
}
?>

View file

@ -1,17 +0,0 @@
<?php
class SimplePie_Absolutize_Test_Bug_691_Test_2 extends SimplePie_Absolutize_Test
{
function data()
{
$this->data['base'] = 'http://a/b/c';
$this->data['relative'] = '0';
}
function expected()
{
$this->expected = 'http://a/b/0';
}
}
?>

View file

@ -1,17 +0,0 @@
<?php
class SimplePie_Absolutize_Test_Bug_691_Test_3 extends SimplePie_Absolutize_Test
{
function data()
{
$this->data['base'] = 'http://a/b/c';
$this->data['relative'] = '?0';
}
function expected()
{
$this->expected = 'http://a/b/c?0';
}
}
?>

View file

@ -1,17 +0,0 @@
<?php
class SimplePie_Absolutize_Test_Bug_691_Test_4 extends SimplePie_Absolutize_Test
{
function data()
{
$this->data['base'] = 'http://a/b/c';
$this->data['relative'] = '#0';
}
function expected()
{
$this->expected = 'http://a/b/c#0';
}
}
?>

View file

@ -1,17 +0,0 @@
<?php
class SimplePie_Absolutize_Test_Bug_691_Test_5 extends SimplePie_Absolutize_Test
{
function data()
{
$this->data['base'] = 'zero://a/b/c';
$this->data['relative'] = 'd';
}
function expected()
{
$this->expected = 'zero://a/b/d';
}
}
?>

View file

@ -1,17 +0,0 @@
<?php
class SimplePie_Absolutize_Test_Bug_691_Test_6 extends SimplePie_Absolutize_Test
{
function data()
{
$this->data['base'] = 'http://0/b/c';
$this->data['relative'] = 'd';
}
function expected()
{
$this->expected = 'http://0/b/d';
}
}
?>

View file

@ -1,17 +0,0 @@
<?php
class SimplePie_Absolutize_Test_Bug_691_Test_7 extends SimplePie_Absolutize_Test
{
function data()
{
$this->data['base'] = 'http://a/b/c?0';
$this->data['relative'] = 'd';
}
function expected()
{
$this->expected = 'http://a/b/d';
}
}
?>

View file

@ -1,17 +0,0 @@
<?php
class SimplePie_Absolutize_Test_Bug_691_Test_8 extends SimplePie_Absolutize_Test
{
function data()
{
$this->data['base'] = 'http://a/b/c#0';
$this->data['relative'] = 'd';
}
function expected()
{
$this->expected = 'http://a/b/d';
}
}
?>

View file

@ -1,17 +0,0 @@
<?php
class SimplePie_Absolutize_Test_Bug_Pct_Encoding_Invalid_Second_Char extends SimplePie_Absolutize_Test
{
function data()
{
$this->data['base'] = 'http://a/b/c/d';
$this->data['relative'] = 'f%0o';
}
function expected()
{
$this->expected = 'http://a/b/c/f%250o';
}
}
?>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC3339_1 extends SimplePie_Date_Test
{
function data()
{
$this->data = '1985-04-12T23:20:50.52Z';
}
function expected()
{
$this->expected = 482196051;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC3339_2 extends SimplePie_Date_Test
{
function data()
{
$this->data = '1996-12-19T16:39:57-08:00';
}
function expected()
{
$this->expected = 851042397;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC3339_3 extends SimplePie_Date_Test
{
function data()
{
$this->data = '1996-12-20T00:39:57Z';
}
function expected()
{
$this->expected = 851042397;
}
}
?>

View file

@ -1 +0,0 @@
The tests enclosed within come from RFC 3339 section 5.8

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_Four_Digit_Year extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 1994 13:15:30 GMT';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_Full_Name_Of_Day extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Friday, 05 Nov 94 13:15:30 GMT';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_Invalid_Day extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Vendredi, 05 Nov 94 13:15:30 GMT';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_Invalid_Timezone extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 UTC';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_Mismatch_Name_Of_Day extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Mon, 05 Nov 94 13:15:30 GMT';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_1 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 GMT';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_10 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 06:15:30 MST';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_11 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 07:15:30 MDT';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_12 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 05:15:30 PST';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_13 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 06:15:30 PDT';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_14 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 A';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_15 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 B';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_16 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 C';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_17 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 D';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_18 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 E';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_19 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 F';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_2 extends SimplePie_Date_Test
{
function data()
{
$this->data = '05 Nov 94 13:15:30 GMT';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_20 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 G';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_21 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 H';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_22 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 I';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_23 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 K';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_24 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 L';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_25 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 M';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_26 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 N';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_27 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 O';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_28 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 P';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_29 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 Q';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_3 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 5 Nov 94 13:15:30 GMT';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_30 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 R';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_31 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 S';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_32 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 T';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_33 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 U';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_34 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 V';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_35 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 W';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_36 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 X';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_37 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 Y';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_38 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 Z';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_39 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 +0000';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_4 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15 GMT';
}
function expected()
{
$this->expected = 784041300;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_40 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 -0000';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_41 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 14:15:30 +0100';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_42 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 12:15:30 -0100';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_43 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri(day), 05 Nov(ember) 94 13:15:30 GMT';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_44 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri(day), 05 Nov(ember) 94 13:15:30 A';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_5 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 13:15:30 UT';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_6 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 08:15:30 EST';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_7 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 09:15:30 EDT';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_8 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 07:15:30 CST';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_RFC2822_9 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'Fri, 05 Nov 94 08:15:30 CDT';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_Bug_157_Test_0 extends SimplePie_Date_Test
{
function data()
{
$this->data = 'meep';
}
function expected()
{
$this->expected = false;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_Bug_259_Test_0 extends SimplePie_Date_Test
{
function data()
{
$this->data = '1994-11-05T08:15:30-0500';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_W3CDTF_1 extends SimplePie_Date_Test
{
function data()
{
$this->data = '1994-11-05T08:15:30-05:00';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1,16 +0,0 @@
<?php
class SimplePie_Date_Test_W3CDTF_2 extends SimplePie_Date_Test
{
function data()
{
$this->data = '1994-11-05T13:15:30Z';
}
function expected()
{
$this->expected = 784041330;
}
}
?>

View file

@ -1 +0,0 @@
The tests enclosed within come from the W3C Date and Time Formats note

View file

@ -1,19 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_Atom_03_DC_10_Subject extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.0/">
<dc:subject>Feed Category</dc:subject>
</feed>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,19 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_Atom_03_DC_11_Subject extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
<dc:subject>Feed Category</dc:subject>
</feed>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,19 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_Atom_10_DC_10_Subject extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.0/">
<dc:subject>Feed Category</dc:subject>
</feed>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,19 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_Atom_10_DC_11_Subject extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
<dc:subject>Feed Category</dc:subject>
</feed>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,19 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_Atom_10_Category_Label extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<feed xmlns="http://www.w3.org/2005/Atom">
<category label="Feed Category"/>
</feed>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,19 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_Atom_10_Category_Term extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<feed xmlns="http://www.w3.org/2005/Atom">
<category term="Feed Category"/>
</feed>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,19 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_Bug_21_Test_0 extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<feed xmlns="http://www.w3.org/2005/Atom">
<category term="Example category"/>
</feed>';
}
function expected()
{
$this->expected = 'Example category';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_090_Atom_10_Category_Label extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/" xmlns:a="http://www.w3.org/2005/Atom">
<channel>
<a:category label="Feed Category"/>
</channel>
</rdf:RDF>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_090_Atom_10_Category_Term extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/" xmlns:a="http://www.w3.org/2005/Atom">
<channel>
<a:category term="Feed Category"/>
</channel>
</rdf:RDF>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_090_DC_10_Subject extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/" xmlns:dc="http://purl.org/dc/elements/1.0/">
<channel>
<dc:subject>Feed Category</dc:subject>
</channel>
</rdf:RDF>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_090_DC_11_Subject extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<dc:subject>Feed Category</dc:subject>
</channel>
</rdf:RDF>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,22 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_091_Netscape_Atom_10_Category_Label extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<!DOCTYPE rss SYSTEM "http://my.netscape.com/publish/formats/rss-0.91.dtd">
<rss version="0.91" xmlns:a="http://www.w3.org/2005/Atom">
<channel>
<a:category label="Feed Category"/>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,22 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_091_Netscape_Atom_10_Category_Term extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<!DOCTYPE rss SYSTEM "http://my.netscape.com/publish/formats/rss-0.91.dtd">
<rss version="0.91" xmlns:a="http://www.w3.org/2005/Atom">
<channel>
<a:category term="Feed Category"/>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,22 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_091_Netscape_DC_10_Subject extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<!DOCTYPE rss SYSTEM "http://my.netscape.com/publish/formats/rss-0.91.dtd">
<rss version="0.91" xmlns:dc="http://purl.org/dc/elements/1.0/">
<channel>
<dc:subject>Feed Category</dc:subject>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,22 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_091_Netscape_DC_11_Subject extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<!DOCTYPE rss SYSTEM "http://my.netscape.com/publish/formats/rss-0.91.dtd">
<rss version="0.91" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<dc:subject>Feed Category</dc:subject>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_091_Userland_Atom_10_Category_Label extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<rss version="0.91" xmlns:a="http://www.w3.org/2005/Atom">
<channel>
<a:category label="Feed Category"/>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_091_Userland_Atom_10_Category_Term extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<rss version="0.91" xmlns:a="http://www.w3.org/2005/Atom">
<channel>
<a:category term="Feed Category"/>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_091_Userland_DC_10_Subject extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<rss version="0.91" xmlns:dc="http://purl.org/dc/elements/1.0/">
<channel>
<dc:subject>Feed Category</dc:subject>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_091_Userland_DC_11_Subject extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<rss version="0.91" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<dc:subject>Feed Category</dc:subject>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_092_Atom_10_Category_Label extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<rss version="0.92" xmlns:a="http://www.w3.org/2005/Atom">
<channel>
<a:category label="Feed Category"/>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_092_Atom_10_Category_Term extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<rss version="0.92" xmlns:a="http://www.w3.org/2005/Atom">
<channel>
<a:category term="Feed Category"/>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_092_DC_10_Subject extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<rss version="0.92" xmlns:dc="http://purl.org/dc/elements/1.0/">
<channel>
<dc:subject>Feed Category</dc:subject>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_092_DC_11_Subject extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<rss version="0.92" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<dc:subject>Feed Category</dc:subject>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_10_Atom_10_Category_Label extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:a="http://www.w3.org/2005/Atom">
<channel>
<a:category label="Feed Category"/>
</channel>
</rdf:RDF>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_10_Atom_10_Category_Term extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:a="http://www.w3.org/2005/Atom">
<channel>
<a:category term="Feed Category"/>
</channel>
</rdf:RDF>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_10_DC_10_Subject extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.0/">
<channel>
<dc:subject>Feed Category</dc:subject>
</channel>
</rdf:RDF>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_10_DC_11_Subject extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<dc:subject>Feed Category</dc:subject>
</channel>
</rdf:RDF>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_20_Atom_10_Category_Label extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<rss version="2.0" xmlns:a="http://www.w3.org/2005/Atom">
<channel>
<a:category label="Feed Category"/>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_20_Atom_10_Category_Term extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<rss version="2.0" xmlns:a="http://www.w3.org/2005/Atom">
<channel>
<a:category term="Feed Category"/>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_20_Category extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<rss version="2.0">
<channel>
<category>Feed Category</category>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_20_DC_10_Subject extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.0/">
<channel>
<dc:subject>Feed Category</dc:subject>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Category_Label_Test_RSS_20_DC_11_Subject extends SimplePie_Feed_Category_Label_Test
{
function data()
{
$this->data =
'<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<dc:subject>Feed Category</dc:subject>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Category';
}
}
?>

View file

@ -1,19 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_Atom_03_DC_10 extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.0/">
<dc:rights>Example Copyright Information</dc:rights>
</feed>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,19 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_Atom_03_DC_11 extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
<dc:rights>Example Copyright Information</dc:rights>
</feed>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,19 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_Atom_10_DC_10 extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.0/">
<dc:rights>Example Copyright Information</dc:rights>
</feed>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,19 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_Atom_10_DC_11 extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
<dc:rights>Example Copyright Information</dc:rights>
</feed>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,19 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_Atom_10_Rights extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<feed xmlns="http://www.w3.org/2005/Atom">
<rights>Example Copyright Information</rights>
</feed>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_RSS_090_Atom_10_Rights extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/" xmlns:a="http://www.w3.org/2005/Atom">
<channel>
<a:rights>Example Copyright Information</a:rights>
</channel>
</rdf:RDF>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_RSS_090_DC_10_Rights extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/" xmlns:dc="http://purl.org/dc/elements/1.0/">
<channel>
<dc:rights>Example Copyright Information</dc:rights>
</channel>
</rdf:RDF>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_RSS_090_DC_11_Rights extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<dc:rights>Example Copyright Information</dc:rights>
</channel>
</rdf:RDF>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,22 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_RSS_091_Netscape_Atom_10_Rights extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<!DOCTYPE rss SYSTEM "http://my.netscape.com/publish/formats/rss-0.91.dtd">
<rss version="0.91" xmlns:a="http://www.w3.org/2005/Atom">
<channel>
<a:rights>Example Copyright Information</a:rights>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,22 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_RSS_091_Netscape_Copyright extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<!DOCTYPE rss SYSTEM "http://my.netscape.com/publish/formats/rss-0.91.dtd">
<rss version="0.91">
<channel>
<copyright>Example Copyright Information</copyright>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,22 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_RSS_091_Netscape_DC_10_Rights extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<!DOCTYPE rss SYSTEM "http://my.netscape.com/publish/formats/rss-0.91.dtd">
<rss version="0.91" xmlns:dc="http://purl.org/dc/elements/1.0/">
<channel>
<dc:rights>Example Copyright Information</dc:rights>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,22 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_RSS_091_Netscape_DC_11_Rights extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<!DOCTYPE rss SYSTEM "http://my.netscape.com/publish/formats/rss-0.91.dtd">
<rss version="0.91" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<dc:rights>Example Copyright Information</dc:rights>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_RSS_091_Userland_Atom_10_Rights extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<rss version="0.91" xmlns:a="http://www.w3.org/2005/Atom">
<channel>
<a:rights>Example Copyright Information</a:rights>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_RSS_091_Userland_Copyright extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<rss version="0.91">
<channel>
<copyright>Example Copyright Information</copyright>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_RSS_091_Userland_DC_10_Rights extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<rss version="0.91" xmlns:dc="http://purl.org/dc/elements/1.0/">
<channel>
<dc:rights>Example Copyright Information</dc:rights>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_RSS_091_Userland_DC_11_Rights extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<rss version="0.91" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<dc:rights>Example Copyright Information</dc:rights>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_RSS_092_Atom_10_Rights extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<rss version="0.92" xmlns:a="http://www.w3.org/2005/Atom">
<channel>
<a:rights>Example Copyright Information</a:rights>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_RSS_092_Copyright extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<rss version="0.92">
<channel>
<copyright>Example Copyright Information</copyright>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_RSS_092_DC_10_Rights extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<rss version="0.92" xmlns:dc="http://purl.org/dc/elements/1.0/">
<channel>
<dc:rights>Example Copyright Information</dc:rights>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_RSS_092_DC_11_Rights extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<rss version="0.92" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<dc:rights>Example Copyright Information</dc:rights>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_RSS_10_Atom_10_Rights extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:a="http://www.w3.org/2005/Atom">
<channel>
<a:rights>Example Copyright Information</a:rights>
</channel>
</rdf:RDF>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_RSS_10_DC_10_Rights extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.0/">
<channel>
<dc:rights>Example Copyright Information</dc:rights>
</channel>
</rdf:RDF>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_RSS_10_DC_11_Rights extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<dc:rights>Example Copyright Information</dc:rights>
</channel>
</rdf:RDF>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_RSS_20_Atom_10_Rights extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<rss version="2.0" xmlns:a="http://www.w3.org/2005/Atom">
<channel>
<a:rights>Example Copyright Information</a:rights>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_RSS_20_Copyright extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<rss version="2.0">
<channel>
<copyright>Example Copyright Information</copyright>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_RSS_20_DC_10_Rights extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.0/">
<channel>
<dc:rights>Example Copyright Information</dc:rights>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Copyright_Test_RSS_20_DC_11_Rights extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<dc:rights>Example Copyright Information</dc:rights>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>

View file

@ -1,19 +0,0 @@
<?php
class SimplePie_Feed_Description_Test_Atom_03_DC_10_Description extends SimplePie_Feed_Description_Test
{
function data()
{
$this->data =
'<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.0/">
<dc:description>Feed Description</dc:description>
</feed>';
}
function expected()
{
$this->expected = 'Feed Description';
}
}
?>

View file

@ -1,19 +0,0 @@
<?php
class SimplePie_Feed_Description_Test_Atom_03_DC_11_Description extends SimplePie_Feed_Description_Test
{
function data()
{
$this->data =
'<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
<dc:description>Feed Description</dc:description>
</feed>';
}
function expected()
{
$this->expected = 'Feed Description';
}
}
?>

View file

@ -1,19 +0,0 @@
<?php
class SimplePie_Feed_Description_Test_Atom_03_Tagline extends SimplePie_Feed_Description_Test
{
function data()
{
$this->data =
'<feed version="0.3" xmlns="http://purl.org/atom/ns#">
<tagline>Feed Description</tagline>
</feed>';
}
function expected()
{
$this->expected = 'Feed Description';
}
}
?>

View file

@ -1,19 +0,0 @@
<?php
class SimplePie_Feed_Description_Test_Atom_10_DC_10_Description extends SimplePie_Feed_Description_Test
{
function data()
{
$this->data =
'<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.0/">
<dc:description>Feed Description</dc:description>
</feed>';
}
function expected()
{
$this->expected = 'Feed Description';
}
}
?>

View file

@ -1,19 +0,0 @@
<?php
class SimplePie_Feed_Description_Test_Atom_10_DC_11_Description extends SimplePie_Feed_Description_Test
{
function data()
{
$this->data =
'<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
<dc:description>Feed Description</dc:description>
</feed>';
}
function expected()
{
$this->expected = 'Feed Description';
}
}
?>

View file

@ -1,19 +0,0 @@
<?php
class SimplePie_Feed_Description_Test_Atom_10_Subtitle extends SimplePie_Feed_Description_Test
{
function data()
{
$this->data =
'<feed xmlns="http://www.w3.org/2005/Atom">
<subtitle>Feed Description</subtitle>
</feed>';
}
function expected()
{
$this->expected = 'Feed Description';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Description_Test_RSS_090_Atom_03_Tagline extends SimplePie_Feed_Description_Test
{
function data()
{
$this->data =
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/" xmlns:a="http://purl.org/atom/ns#">
<channel>
<a:tagline>Feed Description</a:tagline>
</channel>
</rdf:RDF>';
}
function expected()
{
$this->expected = 'Feed Description';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Description_Test_RSS_090_Atom_10_Subtitle extends SimplePie_Feed_Description_Test
{
function data()
{
$this->data =
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/" xmlns:a="http://www.w3.org/2005/Atom">
<channel>
<a:subtitle>Feed Description</a:subtitle>
</channel>
</rdf:RDF>';
}
function expected()
{
$this->expected = 'Feed Description';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Description_Test_RSS_090_DC_10_Description extends SimplePie_Feed_Description_Test
{
function data()
{
$this->data =
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/" xmlns:dc="http://purl.org/dc/elements/1.0/">
<channel>
<dc:description>Feed Description</dc:description>
</channel>
</rdf:RDF>';
}
function expected()
{
$this->expected = 'Feed Description';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Description_Test_RSS_090_DC_11_Description extends SimplePie_Feed_Description_Test
{
function data()
{
$this->data =
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<dc:description>Feed Description</dc:description>
</channel>
</rdf:RDF>';
}
function expected()
{
$this->expected = 'Feed Description';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Description_Test_RSS_090_Description extends SimplePie_Feed_Description_Test
{
function data()
{
$this->data =
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/">
<channel>
<description>Feed Description</description>
</channel>
</rdf:RDF>';
}
function expected()
{
$this->expected = 'Feed Description';
}
}
?>

View file

@ -1,22 +0,0 @@
<?php
class SimplePie_Feed_Description_Test_RSS_091_Netscape_Atom_03_Tagline extends SimplePie_Feed_Description_Test
{
function data()
{
$this->data =
'<!DOCTYPE rss SYSTEM "http://my.netscape.com/publish/formats/rss-0.91.dtd">
<rss version="0.91" xmlns:a="http://purl.org/atom/ns#">
<channel>
<a:tagline>Feed Description</a:tagline>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Description';
}
}
?>

View file

@ -1,22 +0,0 @@
<?php
class SimplePie_Feed_Description_Test_RSS_091_Netscape_Atom_10_Subtitle extends SimplePie_Feed_Description_Test
{
function data()
{
$this->data =
'<!DOCTYPE rss SYSTEM "http://my.netscape.com/publish/formats/rss-0.91.dtd">
<rss version="0.91" xmlns:a="http://www.w3.org/2005/Atom">
<channel>
<a:subtitle>Feed Description</a:subtitle>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Description';
}
}
?>

View file

@ -1,22 +0,0 @@
<?php
class SimplePie_Feed_Description_Test_RSS_091_Netscape_DC_10_Description extends SimplePie_Feed_Description_Test
{
function data()
{
$this->data =
'<!DOCTYPE rss SYSTEM "http://my.netscape.com/publish/formats/rss-0.91.dtd">
<rss version="0.91" xmlns:dc="http://purl.org/dc/elements/1.0/">
<channel>
<dc:description>Feed Description</dc:description>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Description';
}
}
?>

View file

@ -1,22 +0,0 @@
<?php
class SimplePie_Feed_Description_Test_RSS_091_Netscape_DC_11_Description extends SimplePie_Feed_Description_Test
{
function data()
{
$this->data =
'<!DOCTYPE rss SYSTEM "http://my.netscape.com/publish/formats/rss-0.91.dtd">
<rss version="0.91" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<dc:description>Feed Description</dc:description>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Description';
}
}
?>

View file

@ -1,22 +0,0 @@
<?php
class SimplePie_Feed_Description_Test_RSS_091_Netscape_Description extends SimplePie_Feed_Description_Test
{
function data()
{
$this->data =
'<!DOCTYPE rss SYSTEM "http://my.netscape.com/publish/formats/rss-0.91.dtd">
<rss version="0.91">
<channel>
<description>Feed Description</description>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Description';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Description_Test_RSS_091_Userland_Atom_03_Tagline extends SimplePie_Feed_Description_Test
{
function data()
{
$this->data =
'<rss version="0.91" xmlns:a="http://purl.org/atom/ns#">
<channel>
<a:tagline>Feed Description</a:tagline>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Description';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Description_Test_RSS_091_Userland_Atom_10_Subtitle extends SimplePie_Feed_Description_Test
{
function data()
{
$this->data =
'<rss version="0.91" xmlns:a="http://www.w3.org/2005/Atom">
<channel>
<a:subtitle>Feed Description</a:subtitle>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Description';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Description_Test_RSS_091_Userland_DC_10_Description extends SimplePie_Feed_Description_Test
{
function data()
{
$this->data =
'<rss version="0.91" xmlns:dc="http://purl.org/dc/elements/1.0/">
<channel>
<dc:description>Feed Description</dc:description>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Description';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Description_Test_RSS_091_Userland_DC_11_Description extends SimplePie_Feed_Description_Test
{
function data()
{
$this->data =
'<rss version="0.91" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<dc:description>Feed Description</dc:description>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Description';
}
}
?>

View file

@ -1,21 +0,0 @@
<?php
class SimplePie_Feed_Description_Test_RSS_091_Userland_Description extends SimplePie_Feed_Description_Test
{
function data()
{
$this->data =
'<rss version="0.91">
<channel>
<description>Feed Description</description>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Description';
}
}
?>

Some files were not shown because too many files have changed in this diff Show more