MCPcopy Create free account
hub / github.com/zzzeek/sqlalchemy / test_multiple_string

Method test_multiple_string

test/engine/test_reflection.py:2557–2564  ·  view source on GitHub ↗
(self, cache)

Source from the content-addressed store, hash-verified

2555 eq_(cache("name1"), 1)
2556
2557 def test_multiple_string(self, cache):
2558 # new value
2559 eq_(cache("name1"), 1)
2560 eq_(cache("name2"), 2)
2561
2562 # same values, counter not incremented
2563 eq_(cache("name1"), 1)
2564 eq_(cache("name2"), 2)
2565
2566 def test_single_quoted_name(self, cache, quote):
2567 # new value

Callers

nothing calls this directly

Calls 2

eq_Function · 0.90
cacheFunction · 0.90

Tested by

no test coverage detected