orion/reach/opkg_update_test.go

29 lines
403 B
Go
Raw Normal View History

2018-09-19 16:30:37 +02:00
package reach
import (
"testing"
)
func TestClientOPKGUpdate(t *testing.T) {
if !*runIntegrationTests {
t.Skip("To run this test, use: go test -integration")
}
client := NewClient(
WithStandardLogger(),
WithEndpoint(*reachHost, 80),
)
if err := client.Connect(); err != nil {
t.Fatal(err)
}
_, err := client.OPKGUpdate()
if err != nil {
t.Error(err)
}
defer client.Close()
}