A state with varying dependency between vars. Returns: instance of InterdependentState
()
| 919 | |
| 920 | @pytest.fixture |
| 921 | def interdependent_state() -> BaseState: |
| 922 | """A state with varying dependency between vars. |
| 923 | |
| 924 | Returns: |
| 925 | instance of InterdependentState |
| 926 | """ |
| 927 | s = InterdependentState() |
| 928 | s.dict() # prime initial relationships by accessing all ComputedVars |
| 929 | return s |
| 930 | |
| 931 | |
| 932 | def test_not_dirty_computed_var_from_var(interdependent_state): |
nothing calls this directly
no test coverage detected