Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/sqlalchemy/sqlalchemy
/ test_items
Method
test_items
test/base/test_utils.py:542–545 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
540
eq_(set(d.values()), {2, 4})
541
542
def
test_items(self):
543
d = util.immutabledict({1: 2, 3: 4})
544
545
eq_(set(d.items()), {(1, 2), (3, 4)})
546
547
def
test_contains(self):
548
d = util.immutabledict({1: 2, 3: 4})
Callers
nothing calls this directly
Calls
2
eq_
Function · 0.90
items
Method · 0.45
Tested by
no test coverage detected