瀏覽代碼

Add GetCollection example

pull/6/head
Matt Baer 6 年之前
父節點
當前提交
90e9560c81
共有 1 個文件被更改,包括 11 次插入0 次删除
  1. +11
    -0
      collection_test.go

+ 11
- 0
collection_test.go 查看文件

@@ -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)
}

Loading…
取消
儲存