test_helpers.py 238 B

12345678910
  1. #-*- coding: utf-8 -*-
  2. from flaskbb.utils.helpers import slugify
  3. def test_slugify():
  4. """Test the slugify helper method."""
  5. assert slugify(u'Hello world') == u'hello-world'
  6. assert slugify(u'¿Cómo está?') == u'como-esta'