Exemplo n.º 1
0
 def test_height(self):
     image = Image(height=100)
     self.assertEqual(image.height, 100)
     with self.assertRaises(AttributeError):
         image.height = None
Exemplo n.º 2
0
 def test_height(self):
     image = Image(height=100)
     assert image.height == 100
     with self.assertRaises(AttributeError):
         image.height = None