aboutsummaryrefslogtreecommitdiffstats
path: root/file_store_test.go
diff options
context:
space:
mode:
authorGrant Ammons <gammons@gmail.com>2016-04-24 10:22:33 -0400
committerGrant Ammons <gammons@gmail.com>2016-04-24 10:22:33 -0400
commit63893587cb41a1980318b60bf05fafbf433a24ab (patch)
tree39c93f3a1735ef33d028ab9ef44fc0ac15049208 /file_store_test.go
parent6bb90375f4efb2f390a61ede0df70eea1ef1f50f (diff)
Organize things a bit better
Diffstat (limited to 'file_store_test.go')
-rw-r--r--file_store_test.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/file_store_test.go b/file_store_test.go
deleted file mode 100644
index 8bb23e0..0000000
--- a/file_store_test.go
+++ /dev/null
@@ -1,14 +0,0 @@
-package todolist
-
-import (
- "testing"
-
- "github.com/stretchr/testify/assert"
-)
-
-func TestFileStore(t *testing.T) {
- assert := assert.New(t)
- store := &FileStore{FileLocation: "todos.json"}
- store.Load()
- assert.Equal(store.Data[0].Subject, "this is the first subject", "")
-}