Ejemplo n.º 1
0
 def test_CheckDate(self):
     d = sqlite.Date(2004, 10, 28)
Ejemplo n.º 2
0
 def test_CheckSqliteDate(self):
     d = sqlite.Date(2004, 2, 14)
     self.cur.execute("insert into test(d) values (?)", (d,))
     self.cur.execute("select d from test")
     d2 = self.cur.fetchone()[0]
     self.assertEqual(d, d2)