Unittesting begins

This commit is contained in:
Bel LaPointe
2019-11-12 13:45:32 -07:00
commit 8c4bc81694
35 changed files with 3231 additions and 0 deletions

34
testdata/tables vendored Normal file
View File

@@ -0,0 +1,34 @@
# lists
**id int
**uuid char36
* ow int
* name char50
* d_created int
* d_edited int
* sorting tinyint
* published tinyint
* taskview int
# todolist
**id int
**uuid char36
**list_id int
* d_created int
* d_completed int
* d_edited int
* compl tinyint
* title char250
* note text
* prio tinyint
* ow int
* tags char600
* tags_ids char250
* duedate time.date
# tag2task
* tag_id int
* task_id int
* list_id int