(self)
| 94 | a = _ConcreteKnowledge(as_of=_now(), source=_src()) |
| 95 | b = _ConcreteKnowledge(as_of=_now(), source=_src()) |
| 96 | self.assertNotEqual(a.id, b.id) |
| 97 | |
| 98 | def test_default_confidence_is_medium(self): |
| 99 | item = _ConcreteKnowledge(as_of=_now(), source=_src()) |
| 100 | self.assertEqual(item.confidence, "medium") |
| 101 | |
| 102 | def test_available_at_is_optional_and_round_trips(self): |
nothing calls this directly
no test coverage detected