MCPcopy
hub / github.com/burnash/gspread / test_range_reversed

Method test_range_reversed

tests/worksheet_test.py:87–92  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

85
86 @pytest.mark.vcr()
87 def test_range_reversed(self):
88 cell_range1 = self.sheet.range("A1:D4")
89 cell_range2 = self.sheet.range("D4:A1")
90 tuples1 = [(c.row, c.col, c.value) for c in cell_range1]
91 tuples2 = [(c.row, c.col, c.value) for c in cell_range2]
92 self.assertSequenceEqual(tuples1, tuples2)
93
94 @pytest.mark.vcr()
95 def test_range_get_all_values(self):

Callers

nothing calls this directly

Calls 1

rangeMethod · 0.45

Tested by

no test coverage detected