1234567891011121314151617181920212223242526 |
- package archive
- import (
- "context"
- "testing"
- . "github.com/smartystreets/goconvey/convey"
- )
- func TestView3(t *testing.T) {
- Convey(t.Name(), t, func() {
- d.View3(context.Background(), 1)
- })
- }
- func TestViewCache(t *testing.T) {
- Convey(t.Name(), t, func() {
- d.ViewCache(context.Background(), 1)
- })
- }
- func TestDescription(t *testing.T) {
- Convey(t.Name(), t, func() {
- d.Description(context.Background(), 2)
- })
- }
|