view_test.go 426 B

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