(self)
| 70 | assert slugify("RESTful API") == "restful-api" |
| 71 | |
| 72 | def test_hyphenated_input(self): |
| 73 | assert slugify("Command-line Tools") == "command-line-tools" |
| 74 | |
| 75 | def test_extra_spaces(self): |
| 76 | assert slugify(" Date and Time ") == "date-and-time" |