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

Method test_range_unbounded

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

Source from the content-addressed store, hash-verified

77
78 @pytest.mark.vcr()
79 def test_range_unbounded(self):
80 cell_range1 = self.sheet.range("A1:C")
81 cell_range2 = self.sheet.range(1, 1, self.sheet.row_count, 3)
82 tuples1 = [(c.row, c.col, c.value) for c in cell_range1]
83 tuples2 = [(c.row, c.col, c.value) for c in cell_range2]
84 self.assertSequenceEqual(tuples1, tuples2)
85
86 @pytest.mark.vcr()
87 def test_range_reversed(self):

Callers

nothing calls this directly

Calls 1

rangeMethod · 0.45

Tested by

no test coverage detected