(self)
| 1925 | tm.save() |
| 1926 | |
| 1927 | def test_safestr(self): |
| 1928 | c = Company(cents_paid=12, products_delivered=1) |
| 1929 | c.name = SafeString("Iñtërnâtiônàlizætiøn1") |
| 1930 | c.save() |
| 1931 | |
| 1932 | |
| 1933 | class TestLanguageInfo(SimpleTestCase): |
nothing calls this directly
no test coverage detected