aboutsummaryrefslogtreecommitdiffstats
path: root/simplepie/test/absolutize/SPtests/bugs/274.2.php
blob: c3b159e987fcea790f0f180e2265129a9ea6b3c2 (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_274_Test_2 extends SimplePie_Absolutize_Test
{
	function data()
	{
		$this->data['base'] = 'http://a/';
		$this->data['relative'] = '/b';
	}
	
	function expected()
	{
		$this->expected = 'http://a/b';
	}
}

?>