(self)
| 672 | class TestEnUSLocalize(EnUSCookedTest, BaseLocalizeTest): |
| 673 | |
| 674 | def test_localize(self): |
| 675 | self._test_localize('50000.00', '50000.00') |
| 676 | self._test_localize( |
| 677 | '{0:.16f}'.format(Decimal('1.15')), '1.1500000000000000') |
| 678 | |
| 679 | |
| 680 | class TestCLocalize(CCookedTest, BaseLocalizeTest): |
nothing calls this directly
no test coverage detected