aboutsummaryrefslogtreecommitdiffstats
path: root/simplepie/test/absolutize/SPtests/bugs/579.0.php
blob: b899d973f43fdf3681edc192c84603a1d3ccb9f0 (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_579_Test_0 extends SimplePie_Absolutize_Test
{
	function data()
	{
		$this->data['base'] = 'http://a/b/';
		$this->data['relative'] = "b\x0Ac";
	}
	
	function expected()
	{
		$this->expected = 'http://a/b/b%0Ac';
	}
}

?>