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