def test00(self):
     expected = cmp_abc_expected
     got = cmp_abc(V(a), V(b), V(c))
     self.assertEqual(expected, got)
 def test00(self):
     expected = cmp_abc_expected
     got = cmp_abc(A("01"), A(2), A(10))
     self.assertEqual(expected, got)
 def test02(self):
     expected = cmp_abc_expected
     got = cmp_abc(S(('01',)), S(('010',)), S.null)
     self.assertEqual(expected, got)