Projet

Général

Profil

Paste
Télécharger (1,13 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / who_knows_a_title_from_a_hole_in_the_ground / text / ncr.php @ 41cc1b08

1
<?php
2

    
3
class who_knows_a_title_from_a_hole_in_the_ground_text_ncr extends SimplePie_First_Item_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
<id>http://atomtests.philringnalda.com/tests/item/title/text-ncr.atom</id>
11
<title>Atom item title text NCR</title>
12
<updated>2005-12-18T00:13:00Z</updated>
13
<author>
14
  <name>Phil Ringnalda</name>
15
  <uri>http://weblog.philringnalda.com/</uri>
16
</author>
17
<link rel="self" href="http://atomtests.philringnalda.com/tests/item/title/text-ncr.atom"/>
18
<entry>
19
  <id>http://atomtests.philringnalda.com/tests/item/title/text-ncr.atom/1</id>
20
  <title type="text">&#60;title></title>
21
  <updated>2005-12-18T00:13:00Z</updated>
22
  <summary>An item with a type="text" title consisting of a less-than 
23
character, the word \'title\' and a greater-than character, where the
24
less-than character is escaped with a numeric character reference.</summary>
25
  <link href="http://atomtests.philringnalda.com/alt/title-title.html"/>
26
  <category term="item title"/>
27
</entry>
28
</feed>';
29
        }
30
        
31
        function expected()
32
        {
33
                $this->expected = '&lt;title&gt;';
34
        }
35
}
36

    
37
?>