def test_cell_is_updateable_false(self): cell = {'Updateable': 268435716} self.assertFalse(cell_is_updateable(cell))
def test_cell_is_updateable_true(self): cell = {'Updateable': 258} self.assertTrue(cell_is_updateable(cell))