Code

Added id and log to tests files...
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 25 Jul 2001 04:34:31 +0000 (04:34 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 25 Jul 2001 04:34:31 +0000 (04:34 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@87 57a73879-2fb5-44c3-a270-3262357dd7e2

tests/README.TXT
tests/__init__.py
tests/test_dates.py
tests/test_db.py
tests/test_schema.py

index c7d0f10b125f2d241408ad777563f8ec6dfe8b49..cd199f878ec48bf8fa981c675b338cd9462f0a46 100644 (file)
@@ -1,3 +1,5 @@
+$Id: README.TXT,v 1.2 2001-07-25 04:34:31 richard Exp $
+
 Structre of the tests:
 
    1   Test date classes
@@ -16,3 +18,6 @@ Structre of the tests:
    6.4 multipart/alternative (with one text/plain)
    6.5 multipart/alternative (with no text/plain)
 
+
+------
+$Log: not supported by cvs2svn $
index 658ddec382791767784d50e8120d9263af78c937..728e6c74588d8d68566304f522efb4925978390b 100644 (file)
@@ -1,3 +1,5 @@
+# $Id: __init__.py,v 1.3 2001-07-25 04:34:31 richard Exp $
+
 import unittest
 
 import test_dates, test_schema, test_db
@@ -10,3 +12,7 @@ def go():
     ))
     runner = unittest.TextTestRunner()
     runner.run(suite)
+
+#
+# $Log: not supported by cvs2svn $
+#
index eed7efd276c584846589751e3e1a8c6ee34f440a..3d6eb5bef53c66139331023a764a54b0fd660bc2 100644 (file)
@@ -1,3 +1,5 @@
+# $Id: test_dates.py,v 1.2 2001-07-25 04:34:31 richard Exp $ 
+
 import unittest, time
 
 from roundup.date import Date, Interval
@@ -51,3 +53,7 @@ class DateTestCase(unittest.TestCase):
 def suite():
    return unittest.makeSuite(DateTestCase, 'test')
 
+
+#
+# $Log: not supported by cvs2svn $
+#
index f303add19f4f251300b45b0688aceb26fe9cf4ea..c70a5a687016f2dbfa6d12e06e7481ca4f028805 100644 (file)
@@ -1,3 +1,5 @@
+# $Id: test_db.py,v 1.4 2001-07-25 04:34:31 richard Exp $ 
+
 import unittest, os, shutil
 
 from roundup.backends import anydbm
@@ -55,3 +57,7 @@ class DBTestCase(unittest.TestCase):
 def suite():
    return unittest.makeSuite(DBTestCase, 'test')
 
+
+#
+# $Log: not supported by cvs2svn $
+#
index 38318ecce8b068bcded8aae06cd93eae4d034053..70764abbf05e572d705c4df88eb23125de01deba 100644 (file)
@@ -1,3 +1,5 @@
+# $Id: test_schema.py,v 1.3 2001-07-25 04:34:31 richard Exp $ 
+
 import unittest, os, shutil
 
 from roundup.backends import anydbm
@@ -53,3 +55,7 @@ class SchemaTestCase(unittest.TestCase):
 def suite():
    return unittest.makeSuite(SchemaTestCase, 'test')
 
+
+#
+# $Log: not supported by cvs2svn $
+#