...

Source file src/github.com/gregjones/httpcache/memcache/appengine_test.go

Documentation: github.com/gregjones/httpcache/memcache

     1  // +build appengine
     2  
     3  package memcache
     4  
     5  import (
     6  	"testing"
     7  
     8  	"appengine/aetest"
     9  	"github.com/gregjones/httpcache/test"
    10  )
    11  
    12  func TestAppEngine(t *testing.T) {
    13  	ctx, err := aetest.NewContext(nil)
    14  	if err != nil {
    15  		t.Fatal(err)
    16  	}
    17  	defer ctx.Close()
    18  
    19  	test.Cache(t, New(ctx))
    20  }
    21  

View as plain text