(self)
| 770 | class TestEnUSLocalize(EnUSCookedTest, BaseLocalizeTest): |
| 771 | |
| 772 | def test_localize(self): |
| 773 | self._test_localize('50000.00', '50000.00') |
| 774 | self._test_localize( |
| 775 | '{0:.16f}'.format(Decimal('1.15')), '1.1500000000000000') |
| 776 | |
| 777 | |
| 778 | class TestCLocalize(CCookedTest, BaseLocalizeTest): |
nothing calls this directly
no test coverage detected