blob: 2b6a1afa1890892e8d3e58d91bf5171ceb2c1c3f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?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;
}
}
?>
|