def test_is_not_none_6(self): self.assertFalse(is_not_none(None))
def test_is_not_none_5(self): self.assertTrue(is_not_none(7.1))
def test_is_not_none_4(self): self.assertTrue(is_not_none(623))
def test_is_not_none_3(self): self.assertTrue(is_not_none(''))
def test_is_not_none_2(self): self.assertTrue(is_not_none(False))
def test_is_not_none_1(self): self.assertTrue(is_not_none(True))