blob: 241739a7a8a443744311745ed8be55c10fd86942 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
class SimplePie_Date_Test_RFC3339_3 extends SimplePie_Date_Test
{
function data()
{
$this->data = '1996-12-20T00:39:57Z';
}
function expected()
{
$this->expected = 851042397;
}
}
?>
|