src/cm/converters/tests/test_convert.py
author gibus
Tue, 22 Oct 2013 15:00:56 +0200
changeset 555 5d79dc4e50a3
parent 0 40c8f766c9b8
permissions -rw-r--r--
When creating from uploaded file (in ms-word for eg.), try libroffice in case abiword fails.

import random
import unittest

from cm.converters import convert_from_mimetype

class TestConvert(unittest.TestCase):

    def test_oo_convert(self):
        res, attachs = convert_from_mimetype('cm/converters/tests/data/ooserver_can_convert_me01.doc', 'application/vnd.oasis.opendocument.text', 'markdown')
        print res
        

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