goPural/fileActions_test.go

24 lines
333 B
Go
Raw Normal View History

2021-02-20 13:32:23 +00:00
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)
}