def test2(self): slug = slugify(u"C'est l'été") assert slug == 'c-est-l-ete' assert isinstance(slug, str)
def test1(self): slug = slugify(u"a b c") assert slug == 'a-b-c' assert isinstance(slug, str)