aboutsummaryrefslogtreecommitdiffstats
path: root/simplepie/test/first_item_permalink/SPtests/bugs/176.2.php
blob: 6464d2a2a399742b123132f043a449cf2d713827 (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
<?php

class SimplePie_First_Item_Permalink_Test_Bug_176_Test_2 extends SimplePie_First_Item_Permalink_Test
{
	function data()
	{
		$this->data = 
'<feed xmlns="http://www.w3.org/2005/Atom">
	<entry>
		<link rel="related" href="http://example.com/related"/>
		<link rel="alternate" href="http://example.com/alternate"/>
		<link rel="via" href="http://example.com/via"/>
	</entry>
</feed>';
	}
	
	function expected()
	{
		$this->expected = 'http://example.com/alternate';
	}
}

?>