fix git support for v1.5.3 (or higher) by setting "--work-tree"
[translate_toolkit.git] / convert / test_odf2po.py
blobbbf9c2f0112fb6a402b0a57958e2533d981c67f5
1 #!/usr/bin/env python
3 from translate.convert import odf2po
4 from translate.convert import test_convert
6 class TestODF2PO:
7 pass
9 class TestODF2POCommand(test_convert.TestConvertCommand, TestODF2PO):
10 """Tests running actual odf2po commands on files"""
11 convertmodule = odf2po
13 def test_help(self):
14 """tests getting help"""
15 options = test_convert.TestConvertCommand.test_help(self)
16 options = self.help_check(options, "", last=True)