MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_info_not_mirrored

Method test_info_not_mirrored

test/ext/test_hybrid.py:1012–1018  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1010 eq_(A.value.get_history(inst), A._value.get_history(inst))
1011
1012 def test_info_not_mirrored(self):
1013 A = self._fixture()
1014 A._value.info["foo"] = "bar"
1015 A.value.info["bar"] = "hoho"
1016
1017 eq_(A._value.info, {"foo": "bar"})
1018 eq_(A.value.info, {"bar": "hoho"})
1019
1020 def test_info_from_hybrid(self):
1021 A = self._fixture()

Callers

nothing calls this directly

Calls 2

_fixtureMethod · 0.95
eq_Function · 0.90

Tested by

no test coverage detected