forked from piccolo-orm/piccolo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_date.py
More file actions
46 lines (31 loc) · 1.15 KB
/
test_date.py
File metadata and controls
46 lines (31 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import datetime
from unittest import TestCase
from piccolo.table import Table
from piccolo.columns.column_types import Date
from piccolo.columns.defaults.date import DateNow
class MyTable(Table):
created_on = Date()
class MyTableDefault(Table):
created_on = Date(default=DateNow())
class TestDate(TestCase):
def setUp(self):
MyTable.create_table().run_sync()
def tearDown(self):
MyTable.alter().drop_table().run_sync()
def test_timestamp(self):
created_on = datetime.datetime.now().date()
row = MyTable(created_on=created_on)
row.save().run_sync()
result = MyTable.objects().first().run_sync()
self.assertEqual(result.created_on, created_on)
class TestDateDefault(TestCase):
def setUp(self):
MyTableDefault.create_table().run_sync()
def tearDown(self):
MyTableDefault.alter().drop_table().run_sync()
def test_timestamp(self):
created_on = datetime.datetime.now().date()
row = MyTableDefault()
row.save().run_sync()
result = MyTableDefault.objects().first().run_sync()
self.assertEqual(result.created_on, created_on)