コード例 #1
0
ファイル: test_ods.py プロジェクト: zebuline/cutplace
 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])
コード例 #2
0
ファイル: test_ods.py プロジェクト: zebuline/cutplace
 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])
コード例 #3
0
ファイル: test_ods.py プロジェクト: zebuline/cutplace
 def testConvertToCsv(self):
     testInPath = dev_test.getTestInputPath("valid_customers.ods")
     testOutPath = dev_test.getTestOutputPath("valid_customers_from__ods.csv")
     _ods.main([testInPath, testOutPath])