mirror of
https://github.com/simon987/Simple-Incremental-Search-Tool.git
synced 2025-12-13 23:29:04 +00:00
Refactored unit tests
This commit is contained in:
16
test/test_DocxParser.py
Normal file
16
test/test_DocxParser.py
Normal file
@@ -0,0 +1,16 @@
|
||||
from unittest import TestCase
|
||||
from parsing import DocxParser
|
||||
import os
|
||||
|
||||
dir_name = os.path.dirname(os.path.abspath(__file__))
|
||||
|
||||
|
||||
class DocxParserTest(TestCase):
|
||||
|
||||
def test_parse_content(self):
|
||||
|
||||
parser = DocxParser([], 1000, dir_name + "/test_files/")
|
||||
|
||||
info = parser.parse(dir_name + "/test_files/docx1.docx")
|
||||
|
||||
self.assertEqual(len(info["content"]), 1000)
|
||||
Reference in New Issue
Block a user