aboutsummaryrefslogtreecommitdiff
path: root/wav/wav_test.go
diff options
context:
space:
mode:
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)
+}