From af8b1814aa3f5a63e913923449b29cac748fba57 Mon Sep 17 00:00:00 2001 From: Grant Ammons Date: Sun, 24 Apr 2016 09:55:07 -0400 Subject: WIP on getting stores implemented --- file_store_test.go | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 file_store_test.go (limited to 'file_store_test.go') diff --git a/file_store_test.go b/file_store_test.go new file mode 100644 index 0000000..b7132a8 --- /dev/null +++ b/file_store_test.go @@ -0,0 +1,9 @@ +package todolist + +import "testing" + +func TestFileStore(t *testing.T) { + store := &FileStore{FileLocation: "todos.json"} + store.Load() + store.Data[0] +} -- cgit v1.3