MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_update

Method test_update

test/base/test_utils.py:317–321  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

315 not_in(11, o)
316
317 def test_update(self):
318 o = util.OrderedSet(range(10))
319 is_none(o.update([22, 2], [33, 11]))
320 in_(11, o)
321 in_(22, o)
322
323 def test_set_ops(self):
324 o1, o2 = util.OrderedSet([1, 3, 5, 7]), {2, 3, 4, 5}

Callers

nothing calls this directly

Calls 3

updateMethod · 0.95
is_noneFunction · 0.90
in_Function · 0.90

Tested by

no test coverage detected