aboutsummaryrefslogtreecommitdiffstats
path: root/simplepie/test/feed_link/SPtests/atom/1.0/link.php
blob: 7c528c9b55ef1ca2590e38cb23ac2951fcaede0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

class SimplePie_Feed_Link_Test_Atom_10_Link extends SimplePie_Feed_Link_Test
{
	function data()
	{
		$this->data = 
'<feed xmlns="http://www.w3.org/2005/Atom">
	<link href="http://example.com/"/>
</feed>';
	}
	
	function expected()
	{
		$this->expected = 'http://example.com/';
	}
}

?>