Ver código fonte

Add GetCollection example

pull/6/head
Matt Baer 6 anos atrás
pai
commit
90e9560c81
1 arquivos alterados com 11 adições e 0 exclusões
  1. +11
    -0
      collection_test.go

+ 11
- 0
collection_test.go Ver arquivo

@@ -1,6 +1,7 @@
package writeas

import (
"fmt"
"testing"
)

@@ -17,3 +18,13 @@ func TestGetCollection(t *testing.T) {
}
}
}

func ExampleGetCollection() {
c := NewClient()
coll, err := c.GetCollection("blog")
if err != nil {
fmt.Printf("%v", err)
return
}
fmt.Printf("%+v", coll)
}

Carregando…
Cancelar
Salvar