Skip to content

Commit

Permalink
test_sheets add test for fetch return type
Browse files Browse the repository at this point in the history
  • Loading branch information
tgbugs committed Jul 24, 2022
1 parent a5d286d commit 1af3b6e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/test_sheets.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,10 @@ def test_fromUrl(self):
ns = NewSheet()
assert ns.values == self.sheet_ro.values

def test_fetch_return(self):
a, b, c, d, e = self.sheet.fetch()
a, b, c, d, e = self.sheet.fetch(fetch_meta=False)

def test_range(self):
""" test the corners """
#rcs = ((0, 0), (0, -1), (-1, 0), (-1, -1)) # asymmetry is hard
Expand Down

0 comments on commit 1af3b6e

Please sign in to comment.