(self)
| 114 | |
| 115 | def test_default_schema_version(self): |
| 116 | item = _ConcreteKnowledge(as_of=_now(), source=_src()) |
| 117 | self.assertEqual(item.schema_version, "1.0") |
| 118 | |
| 119 | def test_created_at_auto(self): |
| 120 | before = datetime.now(timezone.utc) |
| 121 | item = _ConcreteKnowledge(as_of=_now(), source=_src()) |
| 122 | after = datetime.now(timezone.utc) |
nothing calls this directly
no test coverage detected