Exemplo n.º 1
0
 def test_intnullable_to_none(self, raw):
     act = intnullable(raw)
     self.assertIsNone(act)
Exemplo n.º 2
0
 def test_intnullable_raises(self, raw):
     with self.assertRaises(Exception):
         intnullable(raw)
Exemplo n.º 3
0
 def test_intnullable(self, raw, exp):
     act = intnullable(raw)
     self.assertEqual(act, exp)