Example #1
0
 public function testRequestParsingFromInput()
 {
     /*//
     	testing that things work when we specified data instead.
     	//*/
     $router = new Nether\Avenue\Router(static::$RequestData['Index']);
     (new Verify('parsed domain from input', $router->GetDomain()))->equals('nether.io');
     (new Verify('parsed path from input', $router->GetPath()))->equals('/index');
     return;
 }