Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | public function test() |
||
14 | { |
||
15 | // case with +hourse |
||
16 | $string = '2009-05-28T18:03:38+09:00'; |
||
17 | $this->assertEquals('2009-05-28T09:03:38Z', getNormalizedValue($string)); |
||
18 | |||
19 | // GMT case |
||
20 | $string = '2009-05-28T18:03:38GMT'; |
||
21 | $this->assertEquals('2009-05-28T18:03:38Z', getNormalizedValue($string)); |
||
22 | } |
||
24 |