import pytest from disco.types.base import Model, Field, cached_property @pytest.fixture def model(): class TestModel(Model): a = Field(int) b = Field(int) @cached_property def value(self): return self.a + self.b return TestModel def test_cached_property(model): inst = model(a=1, b=3) assert inst.value == 4 inst.a = 2 assert inst.value == 4 def test_cached_property_clear_on_update(model): inst = model(a=1, b=3) assert inst.value == 4 inst.inplace_update(model(a=2, b=3)) assert inst.value == 5