Nestable\Tests\Services\NestableServiceTest::testRoute PHP Method

testRoute() public method

public testRoute ( )
    public function testRoute()
    {
        $nestable = new \Nestable\Services\NestableService();
        $nested = $nestable->make($this->categories);
        $html = $nested->route(['category' => 'slug'])->renderAsHtml();
        $this->assertRegExp('/http\\:\\/\\/localhost\\/category\\/.*/', $html);
    }