aboutsummaryrefslogtreecommitdiffstats
path: root/simplepie/test/who_knows_a_title_from_a_hole_in_the_ground/xhtml/entity.php
blob: 3053705aa3074799238f639fc0fb6e540ee026a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php

class who_knows_a_title_from_a_hole_in_the_ground_xhtml_entity extends SimplePie_First_Item_Title_Test
{
	function data()
	{
		$this->data = 
'<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<id>http://atomtests.philringnalda.com/tests/item/title/xhtml-entity.atom</id>
<title>Atom item title xhtml entity</title>
<updated>2005-12-18T00:13:00Z</updated>
<author>
  <name>Phil Ringnalda</name>
  <uri>http://weblog.philringnalda.com/</uri>
</author>
<link rel="self" href="http://atomtests.philringnalda.com/tests/item/title/xhtml-entity.atom"/>
<entry>
  <id>http://atomtests.philringnalda.com/tests/item/title/xhtml-entity.atom/1</id>
  <title type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">&lt;title></div></title>
  <updated>2005-12-18T00:13:00Z</updated>
  <summary>An item with a type="xhtml" title consisting of a less-than 
character, the word \'title\' and a greater-than character, where the
less-than character is escaped with its character entity reference.</summary>
  <link href="http://atomtests.philringnalda.com/alt/title-title.html"/>
  <category term="item title"/>
</entry>
</feed>';
	}
	
	function expected()
	{
		$this->expected = '&lt;title&gt;';
	}
}

?>