Code

Fixed unit test support class so the tests ran again.
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 8 Jul 2002 06:39:00 +0000 (06:39 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 8 Jul 2002 06:39:00 +0000 (06:39 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@828 57a73879-2fb5-44c3-a270-3262357dd7e2

test/test_htmltemplate.py

index 640de29974dbdd4b2b9d56e0560ada969ba35a62..4082be20f644a2fb45a1cc00aecb76775076d8e4 100644 (file)
@@ -8,7 +8,7 @@
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 #
-# $Id: test_htmltemplate.py,v 1.14 2002-05-15 06:37:31 richard Exp $ 
+# $Id: test_htmltemplate.py,v 1.15 2002-07-08 06:39:00 richard Exp $ 
 
 import unittest, cgi, time
 
@@ -43,13 +43,15 @@ class Class:
             return 'hello\nworld'
     def list(self):
         return ['1', '2']
+    def filter(self, search_matches, filterspec, sort, group):
+        return ['1', '2']
     def getprops(self):
         return {'string': String(), 'date': Date(), 'interval': Interval(),
             'link': Link('other'), 'multilink': Multilink('other'),
             'password': Password(), 'html': String(), 'key': String(),
             'novalue': String(), 'filename': String(), 'multiline': String(),
             'reldate': Date()}
-    def labelprop(self):
+    def labelprop(self, default_to_id=0):
         return 'key'
 
 class Database:
@@ -353,6 +355,9 @@ def suite():
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.14  2002/05/15 06:37:31  richard
+# ehem and the unit test
+#
 # Revision 1.13  2002/04/03 05:54:31  richard
 # Fixed serialisation problem by moving the serialisation step out of the
 # hyperdb.Class (get, set) into the hyperdb.Database.