예제 #1
0
 def test_type_match_good(self):
     s = c_spec.tuple_converter()
     assert_(s.type_match((1,)))
예제 #2
0
 def test_type_match_good(self):
     s = c_spec.tuple_converter()
     assert_(s.type_match((1, )))
예제 #3
0
 def test_type_match_bad(self):
     s = c_spec.tuple_converter()
     objs = [{},[],'',1,1.,1+1j]
     for i in objs:
         assert_( not s.type_match(i) )
예제 #4
0
 def test_type_match_bad(self):
     s = c_spec.tuple_converter()
     objs = [{}, [], '', 1, 1., 1 + 1j]
     for i in objs:
         assert_(not s.type_match(i))