Example #1
0
 def test_type_match_complex(self):
     s = c_spec.string_converter()
     assert_(not s.type_match(5.+1j))
Example #2
0
 def test_type_match_string(self):
     s = c_spec.string_converter()
     assert_( s.type_match('string') )
Example #3
0
 def test_type_match_float(self):
     s = c_spec.string_converter()
     assert_(not s.type_match(5.))
Example #4
0
 def test_type_match_complex(self):
     s = c_spec.string_converter()
     assert_(not s.type_match(5. + 1j))
Example #5
0
 def test_type_match_float(self):
     s = c_spec.string_converter()
     assert_(not s.type_match(5.))
Example #6
0
 def test_type_match_string(self):
     s = c_spec.string_converter()
     assert_(s.type_match('string'))
Example #7
0
 def test_type_match_int(self):
     s = c_spec.string_converter()
     assert(not s.type_match(5))
Example #8
0
 def test_type_match_int(self):
     s = c_spec.string_converter()
     assert (not s.type_match(5))