for git v1.5.2 (and below): chdir to the directory of the target file before executin...
[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)