Exemple #1
0
 def testConvertToDocBook(self):
     testInPath = dev_test.getTestInputPath("valid_customers.ods")
     testOutPath = dev_test.getTestOutputPath("valid_customers_from__ods.xml")
     _ods.main(["--format=docbook", testInPath, testOutPath])
Exemple #2
0
 def testConvertToRst(self):
     testInPath = dev_test.getTestInputPath("valid_customers.ods")
     testOutPath = dev_test.getTestOutputPath("valid_customers_from__ods.rst")
     _ods.main(["--format=rst", testInPath, testOutPath])
Exemple #3
0
 def testConvertToCsv(self):
     testInPath = dev_test.getTestInputPath("valid_customers.ods")
     testOutPath = dev_test.getTestOutputPath("valid_customers_from__ods.csv")
     _ods.main([testInPath, testOutPath])