aboutsummaryrefslogtreecommitdiffstats
path: root/todolist/file_store_test.go
diff options
context:
space:
mode:
authorGrant Ammons <gammons@gmail.com>2016-05-02 07:32:05 -0400
committerGrant Ammons <gammons@gmail.com>2016-05-02 07:32:05 -0400
commitb91b9d073680a0371af825238af230e9618aea12 (patch)
treebaf9ffba44af3c1b36c76dc9c0cc18e6402c03b1 /todolist/file_store_test.go
parent34c89ec2ca4b458adb94534c4fae44c921181f59 (diff)
Add archive/unarchive
Diffstat (limited to 'todolist/file_store_test.go')
-rw-r--r--todolist/file_store_test.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/todolist/file_store_test.go b/todolist/file_store_test.go
index 8817362..8bffa56 100644
--- a/todolist/file_store_test.go
+++ b/todolist/file_store_test.go
@@ -54,6 +54,23 @@ func TestComplete(t *testing.T) {
assert.Equal(true, store.FindById(1).Completed)
}
+func TestArchive(t *testing.T) {
+ assert := assert.New(t)
+ store := &FileStore{FileLocation: "todos.json"}
+ store.Load()
+ assert.Equal(false, store.FindById(2).Archived)
+ store.Archive(2)
+ assert.Equal(true, store.FindById(2).Archived)
+}
+func TestUnarchive(t *testing.T) {
+ assert := assert.New(t)
+ store := &FileStore{FileLocation: "todos.json"}
+ store.Load()
+ assert.Equal(true, store.FindById(1).Archived)
+ store.Unarchive(1)
+ assert.Equal(false, store.FindById(1).Archived)
+}
+
func TestUncomplete(t *testing.T) {
assert := assert.New(t)
store := &FileStore{FileLocation: "todos.json"}