Beispiel #1
0
def test_slugify_special_chars():
    test_string = "This is a title_with-special.chars"
    assert (slugify(test_string) == "this_is_a_title_with-special.chars")
Beispiel #2
0
def test_slugify_special_chars():
    test_string = "This is a title_with-special.chars"
    assert(slugify(test_string) == "this_is_a_title_with-special.chars")
Beispiel #3
0
def test_slugify():
    test_string = "This is a title"
    assert (slugify(test_string) == "this_is_a_title")
Beispiel #4
0
def test_slugify():
    test_string = "This is a title"
    assert(slugify(test_string) == "this_is_a_title")