aboutsummaryrefslogtreecommitdiff
path: root/sig/sig_test.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2017-05-01 17:01:09 +0200
committerDimitri Sokolyuk <demon@dim13.org>2017-05-01 17:01:09 +0200
commit4cc92b5f712abe7b9522a48b701a7af90eaa134b (patch)
tree010870686ebd22488cfe1c7ac848188edb797ce5 /sig/sig_test.go
parenteae17147e143094e48050494b2da570f42d21986 (diff)
Rename sig package
Diffstat (limited to 'sig/sig_test.go')
-rw-r--r--sig/sig_test.go20
1 files changed, 0 insertions, 20 deletions
diff --git a/sig/sig_test.go b/sig/sig_test.go
deleted file mode 100644
index 06be3c0..0000000
--- a/sig/sig_test.go
+++ /dev/null
@@ -1,20 +0,0 @@
-package sig
-
-import (
- "bytes"
- "testing"
-)
-
-func TestSig(t *testing.T) {
- b := &Block{
- Comment: "comment",
- Bytes: []byte{'t', 'e', 's', 't'},
- }
- b2, err := Decode(EncodeToMemory(b))
- if err != nil {
- t.Error(err)
- }
- if b.Comment != b2.Comment || !bytes.Equal(b.Bytes, b2.Bytes) {
- t.Errorf("got %v, want %v", b2, b)
- }
-}