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