diff options
| author | Nathan Perry <avaglir@gmail.com> | 2017-07-28 00:51:34 -0400 |
|---|---|---|
| committer | Nathan Perry <avaglir@gmail.com> | 2017-07-28 00:51:34 -0400 |
| commit | 47877a3045c745e70b2e77a91e1f59e6f432c5df (patch) | |
| tree | dfcb8b1ea145c33c04aee45dd0c46824bf5fec36 /wav/wav_test.go | |
| parent | 54359c61daadf1d61730d224675c3b4595a5b83a (diff) | |
try own wav impl
Diffstat (limited to 'wav/wav_test.go')
| -rw-r--r-- | wav/wav_test.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/wav/wav_test.go b/wav/wav_test.go new file mode 100644 index 0000000..4fa64db --- /dev/null +++ b/wav/wav_test.go @@ -0,0 +1,15 @@ +package wav + +import ( + "fmt" + "testing" +) + +func TestLoad(t *testing.T) { + wf, err := Load("../downloader/out.wav") + if err != nil { + t.Error(err) + } + + fmt.Println(wf) +} |
