Check that x equals y, and has the same type as well.
(self, x, y)
| 943 | # Test private _convert function. |
| 944 | |
| 945 | def check_exact_equal(self, x, y): |
| 946 | """Check that x equals y, and has the same type as well.""" |
| 947 | self.assertEqual(x, y) |
| 948 | self.assertIs(type(x), type(y)) |
| 949 | |
| 950 | def test_int(self): |
| 951 | # Test conversions to int. |
no test coverage detected