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