Move testing logic to test file in internal/pack

This commit is contained in:
greatroar 2020-03-09 14:25:55 +01:00
parent a23e9c86ba
commit 74a64c47e4
2 changed files with 2 additions and 6 deletions

View file

@ -25,12 +25,8 @@ type Packer struct {
m sync.Mutex
}
// NewPacker returns a new Packer that can be used to pack blobs
// together. If wr is nil, a bytes.Buffer is used.
// NewPacker returns a new Packer that can be used to pack blobs together.
func NewPacker(k *crypto.Key, wr io.Writer) *Packer {
if wr == nil {
wr = bytes.NewBuffer(nil)
}
return &Packer{k: k, wr: wr}
}