(self)
| 6129 | self.assertEqual(x.__ge__(y), NotImplemented) |
| 6130 | |
| 6131 | def test_extra_attributes(self): |
| 6132 | with self.assertWarns(DeprecationWarning): |
| 6133 | utcnow = datetime.utcnow() |
| 6134 | for x in [date.today(), |
| 6135 | time(), |
| 6136 | utcnow, |
| 6137 | timedelta(), |
| 6138 | tzinfo(), |
| 6139 | timezone(timedelta())]: |
| 6140 | with self.assertRaises(AttributeError): |
| 6141 | x.abc = 1 |
| 6142 | |
| 6143 | def test_check_arg_types(self): |
| 6144 | class Number: |
nothing calls this directly
no test coverage detected