mirror of
https://github.com/vbatts/tar-split.git
synced 2025-07-03 23:08:29 +00:00
Have a bit-bucket FilePutter, for when it does not matter. Beginning thoughts on disassembly, but it has things that need thought. Mostly comments in the function for now.
9 lines
165 B
Go
9 lines
165 B
Go
package asm
|
|
|
|
import "testing"
|
|
|
|
func TestNewOutputTarStream(t *testing.T) {
|
|
// TODO disassembly
|
|
fgp := NewBufferFileGetPutter()
|
|
_ = NewOutputTarStream(fgp, nil)
|
|
}
|