(self)
| 42 | |
| 43 | @pytest.mark.vcr() |
| 44 | def test_equality(self): |
| 45 | sg = self._sequence_generator() |
| 46 | update_value = next(sg) |
| 47 | self.sheet.update_acell("A1", update_value) |
| 48 | cell = self.sheet.acell("A1") |
| 49 | same_cell = self.sheet.cell(1, 1) |
| 50 | self.assertEqual(cell, same_cell) |
| 51 | self.sheet.update_acell("A2", update_value) |
| 52 | another_cell = self.sheet.acell("A2") |
| 53 | self.assertNotEqual(cell, another_cell) |
| 54 | self.sheet.update_acell("B1", update_value) |
| 55 | another_cell = self.sheet.acell("B1") |
| 56 | self.assertNotEqual(cell, another_cell) |
| 57 | |
| 58 | @pytest.mark.vcr() |
| 59 | def test_numeric_value(self): |
nothing calls this directly
no test coverage detected