(self)
| 67 | assert slugify("Admin Panels") == "admin-panels" |
| 68 | |
| 69 | def test_uppercase_acronym(self): |
| 70 | assert slugify("RESTful API") == "restful-api" |
| 71 | |
| 72 | def test_hyphenated_input(self): |
| 73 | assert slugify("Command-line Tools") == "command-line-tools" |