MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_pickle_quote

Method test_pickle_quote

test/sql/test_quote.py:1012–1017  ·  test/sql/test_quote.py::QuotedIdentTest.test_pickle_quote
(self)

Source from the content-addressed store, hash-verified

1010 self._assert_not_quoted(q2)
1011
1012 def test_pickle_quote(self):
1013 q1 = quoted_name(class="st">"x", True)
1014 for loads, dumps in picklers():
1015 q2 = loads(dumps(q1))
1016 eq_(str(q1), str(q2))
1017 eq_(q1.quote, q2.quote)
1018
1019 def test_pickle_anon_label(self):
1020 q1 = _anonymous_label(quoted_name(class="st">"x", True))

Callers

nothing calls this directly

Calls 5

quoted_nameClass · 0.90
picklersFunction · 0.90
eq_Function · 0.90
loadsFunction · 0.85
dumpsFunction · 0.85

Tested by

no test coverage detected