aboutsummaryrefslogtreecommitdiffstats
path: root/simplepie/test/feed_title/SPtests/bugs/174.0.php
blob: 9625463b77f6d8314e02d0d1efd71013f712b615 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

class SimplePie_Feed_Title_Test_Bug_174_Test_0 extends SimplePie_Feed_Title_Test
{
	function data()
	{
		$this->data = 
'<?xml version = "1.0" encoding = "UTF-8" ?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title>Spaces in prolog</title>
</feed>';
	}
	
	function expected()
	{
		$this->expected = 'Spaces in prolog';
	}
}

?>