Cocur\Slugify\Tests\Bridge\Latte\SlugifyHelperTest::slugify PHP Method

slugify() public method

public slugify ( )
    public function slugify()
    {
        $this->slugify->shouldReceive('slugify')->with('hällo wörld', '_')->once()->andReturn('haello_woerld');
        $this->assertEquals('haello_woerld', $this->helper->slugify('hällo wörld', '_'));
    }
SlugifyHelperTest