summaryrefslogtreecommitdiffstats
path: root/3rdparty/simplepie/tests/oldtests/absolutize/SPtests/bugs/691.2.php
blob: c3ce0855d679a1b6fe779822772cba6818bb3ede (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

class SimplePie_Absolutize_Test_Bug_691_Test_2 extends SimplePie_Absolutize_Test
{
	function data()
	{
		$this->data['base'] = 'http://a/b/c';
		$this->data['relative'] = '0';
	}
	
	function expected()
	{
		$this->expected = 'http://a/b/0';
	}
}

?>