tests/thirdparty: package metadata (#223)
Fetches third-party package metadata from Github.
This commit is contained in:
committed by
GitHub
parent
afe2d539b8
commit
f355d27b13
27
internal/github/client_test.go
Normal file
27
internal/github/client_test.go
Normal file
@@ -0,0 +1,27 @@
|
||||
package github
|
||||
|
||||
import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
"net/http"
|
||||
"testing"
|
||||
|
||||
"github.com/mmcloughlin/avo/internal/test"
|
||||
)
|
||||
|
||||
func TestClientRepository(t *testing.T) {
|
||||
test.RequiresNetwork(t)
|
||||
|
||||
ctx := context.Background()
|
||||
g := NewClient(WithHTTPClient(http.DefaultClient), WithTokenFromEnvironment())
|
||||
r, err := g.Repository(ctx, "golang", "go")
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
j, err := json.MarshalIndent(r, "", "\t")
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
t.Logf("repository = %s", j)
|
||||
}
|
||||
Reference in New Issue
Block a user