ytsync/ytapi/ytapi_test.go
2020-11-03 02:14:01 +01:00

13 lines
218 B
Go

package ytapi
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestChannelInfo(t *testing.T) {
info, err := ChannelInfo("UCNQfQvFMPnInwsU_iGYArJQ")
assert.NoError(t, err)
assert.NotNil(t, info)
}