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

?>