(value, expected)
| 17 | class Test_str_value(unittest.TestCase): |
| 18 | def test(self): |
| 19 | def T(value, expected): |
| 20 | actual = str_money_value(value) |
| 21 | self.assertEqual(actual, expected) |
| 22 | |
| 23 | T( 0, '0.0') |
| 24 | T( 1, '0.00000001') |
nothing calls this directly
no test coverage detected