From f4f4f518842437b53f45e54454deb9e11cfdcf8e Mon Sep 17 00:00:00 2001 From: chfw Date: Wed, 23 May 2018 08:27:08 +0100 Subject: [PATCH] :microscope: make a test assertion. #24 --- tests/test_bug_fixes.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/test_bug_fixes.py b/tests/test_bug_fixes.py index bbfa7ef..a723b35 100644 --- a/tests/test_bug_fixes.py +++ b/tests/test_bug_fixes.py @@ -129,6 +129,12 @@ def test_issue_23(): def test_issue_24(): + test_file = get_fixtures("comment-in-cell.ods") + data = get_data(test_file) + eq_(data['Sheet1'], [['test']]) + + +def test_issue_25(): test_file = get_fixtures("comment-in-cell.ods") data = get_data(test_file) print(data)