aboutsummaryrefslogtreecommitdiff
path: root/wav/wav_test.go
diff options
context:
space:
mode:
authorNathan Perry <avaglir@gmail.com>2017-07-28 00:51:34 -0400
committerNathan Perry <avaglir@gmail.com>2017-07-28 00:51:34 -0400
commit47877a3045c745e70b2e77a91e1f59e6f432c5df (patch)
treedfcb8b1ea145c33c04aee45dd0c46824bf5fec36 /wav/wav_test.go
parent54359c61daadf1d61730d224675c3b4595a5b83a (diff)
try own wav impl
Diffstat (limited to 'wav/wav_test.go')
-rw-r--r--wav/wav_test.go15
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)
+}