Skip to content

Commit

Permalink
Add two slugify special cases to test
Browse files Browse the repository at this point in the history
  • Loading branch information
glensc committed Jan 17, 2022
1 parent 66528b4 commit 0f826c4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ def test_slugify():
(' LOOK AT MY WHITESPACE ', 'look-at-my-whitespace'),
("Marvel's Agents of S.H.I.E.L.D.", 'marvel-s-agents-of-s-h-i-e-l-d'),
('Naruto Shippūden', 'naruto-shippuden'),
('Re:ZERO -Starting Life in Another World-', 're-zero-starting-life-in-another-world'),
('So I’m a Spider, So What?', 'so-i-m-a-spider-so-what'),
]

for inp, expected in test_data:
Expand Down

0 comments on commit 0f826c4

Please sign in to comment.