diff options
| author | Grant Ammons <gammons@gmail.com> | 2016-04-24 09:55:07 -0400 |
|---|---|---|
| committer | Grant Ammons <gammons@gmail.com> | 2016-04-24 09:55:07 -0400 |
| commit | af8b1814aa3f5a63e913923449b29cac748fba57 (patch) | |
| tree | deaa50b4be11217ae18d2c786fc8bed0d6efa8de /file_store_test.go | |
| parent | c34fdae510debc8d106a68f60799b64b98c9b2f5 (diff) | |
WIP on getting stores implemented
Diffstat (limited to 'file_store_test.go')
| -rw-r--r-- | file_store_test.go | 9 |
1 files changed, 9 insertions, 0 deletions
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] +} |
