Example #1
0
 public function testUrlBuildStrings()
 {
     $url = ['protocol' => 'https', 'host' => 'test.domain.spurl.co.uk', 'path' => 'test/path/to/be/joined'];
     $result = Spurl\Url::build($url);
     $this->assertEquals($result, 'https://test.domain.spurl.co.uk/test/path/to/be/joined/');
 }