goPural/fileActions_test.go

24 lines
333 B
Go

package pural
import (
"testing"
)
func TestDownloadPublicBnnFile(t *testing.T) {
err := DownloadPublicBnnlists()
if err != nil {
t.Errorf("%s", err)
}
//t.Logf("%v", f)
}
func TestRetrievePublicBnnlistStk(t *testing.T) {
f, err := RetrievePublicBnnlistStk()
if err != nil {
t.Errorf("%s", err)
}
t.Logf("%v", f)
}