Projet

Général

Profil

Paste
Télécharger (335 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / feed_title / SPtests / bugs / 174.0.php @ 41cc1b08

1
<?php
2

    
3
class SimplePie_Feed_Title_Test_Bug_174_Test_0 extends SimplePie_Feed_Title_Test
4
{
5
        function data()
6
        {
7
                $this->data = 
8
'<?xml version = "1.0" encoding = "UTF-8" ?>
9
<feed xmlns="http://www.w3.org/2005/Atom">
10
        <title>Spaces in prolog</title>
11
</feed>';
12
        }
13
        
14
        function expected()
15
        {
16
                $this->expected = 'Spaces in prolog';
17
        }
18
}
19

    
20
?>