(self)
| 5942 | self.assertEqual(x.__ge__(y), NotImplemented) |
| 5943 | |
| 5944 | def test_extra_attributes(self): |
| 5945 | with self.assertWarns(DeprecationWarning): |
| 5946 | utcnow = datetime.utcnow() |
| 5947 | for x in [date.today(), |
| 5948 | time(), |
| 5949 | utcnow, |
| 5950 | timedelta(), |
| 5951 | tzinfo(), |
| 5952 | timezone(timedelta())]: |
| 5953 | with self.assertRaises(AttributeError): |
| 5954 | x.abc = 1 |
| 5955 | |
| 5956 | def test_check_arg_types(self): |
| 5957 | class Number: |
nothing calls this directly
no test coverage detected