MCPcopy Index your code
hub / github.com/zzzeek/sqlalchemy / test_sorting

Method test_sorting

test/dialect/postgresql/test_bitstring.py:30–34  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

28 is_true(case())
29
30 def test_sorting(self):
31 eq_(
32 sorted([BitString("110"), BitString("010"), "111", "101"]),
33 [BitString("010"), "101", BitString("110"), "111"],
34 )
35
36 def test_str_conversion(self):
37 x = BitString("1110111")

Callers

nothing calls this directly

Calls 2

eq_Function · 0.90
BitStringClass · 0.90

Tested by

no test coverage detected