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