Mercurial > p > roundup > code
diff test/test_dates.py @ 3973:85cbaa50eba1
xml-rpc security checks and tests across all backends [SF#1907211]
also add some leap year tests
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 07 Mar 2008 01:11:55 +0000 |
| parents | 3d5a0a949107 |
| children | d5e2767d4e91 |
line wrap: on
line diff
--- a/test/test_dates.py Fri Mar 07 00:35:47 2008 +0000 +++ b/test/test_dates.py Fri Mar 07 01:11:55 2008 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: test_dates.py,v 1.44 2007-12-23 00:23:23 richard Exp $ +# $Id: test_dates.py,v 1.45 2008-03-07 01:11:55 richard Exp $ from __future__ import nested_scopes import unittest @@ -68,6 +68,9 @@ ae(str(Date('1900-02-01')), '1900-02-01.00:00:00') ae(str(Date('1800-07-15')), '1800-07-15.00:00:00') + def testLeapYear(self): + self.assertEquals(str(Date('2008-02-29')), '2008-02-29.00:00:00') + def testDateError(self): self.assertRaises(ValueError, Date, "12") # Date cannot handle dates before year 1
