(self)
| 91 | @skipUnlessDBFeature("supports_uuid7_function") |
| 92 | @skipIfDBFeature("supports_uuid7_function_shift") |
| 93 | def test_uuid7_shift_unsupported(self): |
| 94 | msg = "The shift argument to UUID7 is not supported on this database backend." |
| 95 | |
| 96 | with self.assertRaisesMessage(NotSupportedError, msg): |
| 97 | UUIDModel.objects.update(uuid=UUID7(shift=timedelta(hours=12))) |
nothing calls this directly
no test coverage detected