1
0
Files
gogodiscordo/core/core_test.go
adminoo cb5995640a i fucking hope multiple return values aren't good Go practices
createAudio send a mp3 file created with espeak
2020-12-06 12:04:40 +01:00

14 lines
183 B
Go

package core
import (
"testing"
)
func TestCreateAudioSimple(t *testing.T) {
var message string = "test 1 2 3"
_, err, _ := createAudio(message)
if err != nil {
t.Fail()
}
}