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

?>