Commit 8fbb6ea7 authored by Jean-Paul Smets's avatar Jean-Paul Smets

Updated to new API of Cache.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@11822 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 75c148ef
...@@ -59,7 +59,7 @@ from Products.ERP5OOo.Document.OOoDocument import ConversionError ...@@ -59,7 +59,7 @@ from Products.ERP5OOo.Document.OOoDocument import ConversionError
# XXX set it to an appropriate value # XXX set it to an appropriate value
erp5_port=9090 erp5_port=9090
class TestDms(ERP5TypeTestCase): class TestDocument(ERP5TypeTestCase):
""" """
""" """
...@@ -192,15 +192,15 @@ class TestDms(ERP5TypeTestCase): ...@@ -192,15 +192,15 @@ class TestDms(ERP5TypeTestCase):
LOG('Testing... ',0,'test_04_FileGeneration') LOG('Testing... ',0,'test_04_FileGeneration')
doctext=self.createTestDocument() doctext=self.createTestDocument()
doctext.getTargetFile('pdf') doctext.getTargetFile('pdf')
self.assert_(doctext.hasFileCache('pdf')) self.assert_(doctext.hasConversion(format = 'pdf'))
doctext.getTargetFile('doc') doctext.getTargetFile('doc')
self.assert_(doctext.hasFileCache('doc')) self.assert_(doctext.hasConversion(format = 'doc'))
doctext.getTargetFile('txt') doctext.getTargetFile('txt')
self.assert_(doctext.hasFileCache('txt')) self.assert_(doctext.hasConversion(format = 'txt'))
doctext.getTargetFile('html-writer') doctext.getTargetFile('html-writer')
self.assert_(doctext.hasFileCache('html-writer')) self.assert_(doctext.hasConversion(format = 'html-writer'))
doctext.getTargetFile('rtf') doctext.getTargetFile('rtf')
self.assert_(doctext.hasFileCache('rtf')) self.assert_(doctext.hasConversion(format = 'rtf'))
self.failIf(doctext.hasSnapshot()) self.failIf(doctext.hasSnapshot())
doctext.createSnapshot() doctext.createSnapshot()
self.failUnless(doctext.hasSnapshot()) self.failUnless(doctext.hasSnapshot())
...@@ -239,7 +239,7 @@ else: ...@@ -239,7 +239,7 @@ else:
import unittest import unittest
def test_suite(): def test_suite():
suite = unittest.TestSuite() suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestDms)) suite.addTest(unittest.makeSuite(TestDocument))
return suite return suite
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment