view_test.go 418 B

1234567891011121314151617181920212223242526
  1. package archive
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func Test_View3(t *testing.T) {
  8. Convey("View3", t, func() {
  9. d.View3(context.TODO(), 1)
  10. })
  11. }
  12. func Test_ViewCache(t *testing.T) {
  13. Convey("ViewCache", t, func() {
  14. d.ViewCache(context.TODO(), 1)
  15. })
  16. }
  17. func Test_Description(t *testing.T) {
  18. Convey("Description", t, func() {
  19. d.Description(context.TODO(), 2)
  20. })
  21. }