Skip to content

Commit

Permalink
fix(text): Add CODE text case.
Browse files Browse the repository at this point in the history
  • Loading branch information
vinci1it2000 committed Jul 5, 2024
1 parent 05b4a82 commit 8a0ae2b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/test_cell.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ def inp_ranges(*rng):
@ddt.ddt
class TestCell(unittest.TestCase):
@ddt.idata([
('A1', '=CODE(A2)', {'A2': [[sh.EMPTY]]}, '<Ranges>(A1)=[[#VALUE!]]'),
('A1', '=CHAR(1)', {}, '<Ranges>(A1)=[[\'_x0001_\']]'),
('A1', '=CHAR(157)', {}, '<Ranges>(A1)=[[\'ù\']]'),
('A1', '=TEXT("a", "mm")', {}, '<Ranges>(A1)=[[\'a\']]'),
Expand Down

0 comments on commit 8a0ae2b

Please sign in to comment.