Exemplo n.º 1
0
 def test_can_update_resolution(self):
     pdb = Pdb()
     pdb._resolution = 1.2
     pdb.resolution = 1.5
     self.assertEqual(pdb._resolution, 1.5)
Exemplo n.º 2
0
 def test_can_get_pdb_resolution(self):
     pdb = Pdb()
     pdb._resolution = 1.2
     self.assertIs(pdb._resolution, pdb.resolution)