* Add implementation for folder store methods * Add Move implementation * Add back comment and fix query * Remove Move from store * Adjust GetChildren * Fix errutil error declaration and usage * Add org id to get children query
20 lines
326 B
Go
20 lines
326 B
Go
package folderimpl
|
|
|
|
import "testing"
|
|
|
|
func TestCreate(t *testing.T) {}
|
|
|
|
func TestDelete(t *testing.T) {}
|
|
|
|
func TestUpdate(t *testing.T) {}
|
|
|
|
func TestGet(t *testing.T) {}
|
|
|
|
func TestGetParent(t *testing.T) {}
|
|
|
|
func TestGetParents(t *testing.T) {}
|
|
|
|
func TestGetChildren(t *testing.T) {}
|
|
|
|
func TestGetDescendents(t *testing.T) {}
|