aboutsummaryrefslogtreecommitdiff
path: root/chunk_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'chunk_test.go')
-rw-r--r--chunk_test.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/chunk_test.go b/chunk_test.go
deleted file mode 100644
index 4ea6b44..0000000
--- a/chunk_test.go
+++ /dev/null
@@ -1,14 +0,0 @@
-package main
-
-import "testing"
-
-func TestIsStored(t *testing.T) {
- stored := Chunk{Id: &ChunkId{0, 0}}
- if !stored.isStored() {
- t.Error("Chunk ", stored, " should be stored")
- }
- unstored := Chunk{}
- if unstored.isStored() {
- t.Error("Chunk ", unstored, " should not be stored")
- }
-}