MCPcopy Index your code
hub / github.com/RustPython/RustPython / test_to_eng_string

Method test_to_eng_string

Lib/test/test_decimal.py:3666–3673  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

3664 self.assertRaises(TypeError, c.subtract, 1, '2')
3665
3666 def test_to_eng_string(self):
3667 Decimal = self.decimal.Decimal
3668 Context = self.decimal.Context
3669
3670 c = Context()
3671 d = c.to_eng_string(Decimal(10))
3672 self.assertEqual(c.to_eng_string(10), d)
3673 self.assertRaises(TypeError, c.to_eng_string, '10')
3674
3675 def test_to_sci_string(self):
3676 Decimal = self.decimal.Decimal

Callers

nothing calls this directly

Calls 5

to_eng_stringMethod · 0.95
DecimalClass · 0.85
ContextClass · 0.70
assertEqualMethod · 0.45
assertRaisesMethod · 0.45

Tested by

no test coverage detected