(self)
| 142 | ) |
| 143 | |
| 144 | def test_friendly_number(self): |
| 145 | locale = tornado.locale.get("en_US") |
| 146 | self.assertEqual(locale.friendly_number(1000000), "1,000,000") |
| 147 | |
| 148 | def test_list(self): |
| 149 | locale = tornado.locale.get("en_US") |
nothing calls this directly
no test coverage detected