Ejemplo n.º 1
0
 def test_09_is_iterable(self):
     """Check tuple."""
     self.assertTrue(xtyping.is_iterable((1, 2)))
Ejemplo n.º 2
0
 def test_08_is_iterable(self):
     """Check list."""
     self.assertTrue(xtyping.is_iterable([1, 2]))
Ejemplo n.º 3
0
 def test_06_is_iterable(self):
     """Check float."""
     self.assertFalse(xtyping.is_iterable(1.0))
Ejemplo n.º 4
0
 def test_07_is_iterable(self):
     """Check str."""
     self.assertFalse(xtyping.is_iterable('abc'))
Ejemplo n.º 5
0
 def test_05_is_iterable(self):
     """Check int."""
     self.assertFalse(xtyping.is_iterable(1))