aboutsummaryrefslogtreecommitdiffstats
path: root/simplepie/test/absolutize/SPtests/bugs/1091.0.1.php
blob: 5c781eeeae5e547ce6adf0ff54569815b47a4326 (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_1 extends SimplePie_Absolutize_Test
{
	function data()
	{
		$this->data['base'] = 'http://example.com';
		$this->data['relative'] = '//example.net';
	}
	
	function expected()
	{
		$this->expected = 'http://example.net';
	}
}

?>