(self)
| 440 | self.assertIn('line 1, col 1', str(err.exception)) |
| 441 | |
| 442 | def test_unicode_values(self): |
| 443 | s = Template('$who likes $what') |
| 444 | d = dict(who='t\xffm', what='f\xfe\fed') |
| 445 | self.assertEqual(s.substitute(d), 't\xffm likes f\xfe\x0ced') |
| 446 | |
| 447 | def test_keyword_arguments(self): |
| 448 | eq = self.assertEqual |
nothing calls this directly
no test coverage detected