(self)
| 343 | ) |
| 344 | |
| 345 | def test_phone2numeric(self): |
| 346 | numeric = text.phone2numeric("0800 flowers") |
| 347 | self.assertEqual(numeric, "0800 3569377") |
| 348 | lazy_numeric = lazystr(text.phone2numeric("0800 flowers")) |
| 349 | self.assertEqual(lazy_numeric, "0800 3569377") |
| 350 | |
| 351 | def test_slugify(self): |
| 352 | items = ( |