def test_is_not_num(self): self.assertFalse(utils.is_num({}))
def test_is_num(self): self.assertTrue(utils.is_num(2))