aboutsummaryrefslogtreecommitdiffstats
path: root/file_store_test.go
blob: b7132a8a3d1315e32817c73a9a4a06247d7cd746 (plain)
1
2
3
4
5
6
7
8
9
package todolist

import "testing"

func TestFileStore(t *testing.T) {
	store := &FileStore{FileLocation: "todos.json"}
	store.Load()
	store.Data[0]
}