Add test stubs and TODOs
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
kolaente 2020-09-07 22:02:39 +02:00
parent bf5983f67d
commit 4175613164
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 15 additions and 0 deletions

View File

@ -38,3 +38,18 @@ func TestSavedFilter_getFilterIDFromListID(t *testing.T) {
assert.Equal(t, int64(0), getSavedFilterIDFromListID(2))
})
}
func TestSavedFilter_Create(t *testing.T) {
}
func TestSavedFilter_ReadOne(t *testing.T) {
// Also test when getting a list which is actually a saved filter it returns the saved filter
// Also test getting tasks from a saved filter through the task collection as part of a normal task
// Also test rights (maybe not here)
}
func TestSavedFilter_Update(t *testing.T) {
}
func TestSavedFilter_Delete(t *testing.T) {
}