test_issue_185.py 430 Bytes
import unittest, sys, os

from .. import testdata_reader
from oletools import rtfobj

class TestRtfObjIssue185(unittest.TestCase):
    def test_skip_space_after_bin_control_word(self):
        data = testdata_reader.read('rtfobj/issue_185.rtf')
        rtfp = rtfobj.RtfObjParser(data)
        rtfp.parse()
        objects = rtfp.objects

        self.assertTrue(len(objects) == 1)

if __name__ == '__main__':
    unittest.main()