aboutsummaryrefslogtreecommitdiffstats
path: root/simplepie/test/absolutize/SPtests/bugs/691.6.php
blob: 6a9ef397f038ad0f31ca8cfa600779903778e566 (plain) (blame)
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_6 extends SimplePie_Absolutize_Test
{
	function data()
	{
		$this->data['base'] = 'http://0/b/c';
		$this->data['relative'] = 'd';
	}
	
	function expected()
	{
		$this->expected = 'http://0/b/d';
	}
}

?>