Package translate :: Package convert :: Module test_odf2po
[hide private]
[frames] | no frames]

Source Code for Module translate.convert.test_odf2po

 1  #!/usr/bin/env python 
 2   
 3  from translate.convert import odf2po 
 4  from translate.convert import test_convert 
 5   
6 -class TestODF2PO:
7 pass
8
9 -class TestODF2POCommand(test_convert.TestConvertCommand, TestODF2PO):
10 """Tests running actual odf2po commands on files""" 11 convertmodule = odf2po 12
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)
17