MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_committed_value_set

Method test_committed_value_set

test/orm/test_attributes.py:1803–1809  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1801 eq_(self._someattr_committed_state(f), None)
1802
1803 def test_committed_value_set(self):
1804 Foo = self._fixture(
1805 uselist=False, useobject=False, active_history=False
1806 )
1807 f = Foo()
1808 f.someattr = 3
1809 eq_(self._someattr_committed_state(f), None)
1810
1811 def test_committed_value_set_active_hist(self):
1812 Foo = self._fixture(

Callers

nothing calls this directly

Calls 4

_fixtureMethod · 0.95
eq_Function · 0.90
FooClass · 0.70

Tested by

no test coverage detected