Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(383)

Unified Diff: impl/dummy/dummy_test.go

Issue 1772943003: Add wrappers for the module module (Closed) Base URL: https://github.com/luci/gae.git@master
Patch Set: CL comments Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « impl/dummy/dummy.go ('k') | impl/memory/context.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: impl/dummy/dummy_test.go
diff --git a/impl/dummy/dummy_test.go b/impl/dummy/dummy_test.go
index 34ff57986e84ebec819467c9886373d36985e60d..27674e63041c73029148d8fcf839ac2f401531b6 100644
--- a/impl/dummy/dummy_test.go
+++ b/impl/dummy/dummy_test.go
@@ -11,6 +11,7 @@ import (
infoS "github.com/luci/gae/service/info"
mailS "github.com/luci/gae/service/mail"
mcS "github.com/luci/gae/service/memcache"
+ modS "github.com/luci/gae/service/module"
tqS "github.com/luci/gae/service/taskqueue"
userS "github.com/luci/gae/service/user"
. "github.com/smartystreets/goconvey/convey"
@@ -92,5 +93,13 @@ func TestContextAccess(t *testing.T) {
}, ShouldPanicWith, "dummy: method Mail.Send is not implemented")
})
+ Convey("Module", func() {
+ c = modS.Set(c, Module())
+ So(modS.Get(c), ShouldNotBeNil)
+ So(func() {
+ defer p()
+ modS.Get(c).List()
+ }, ShouldPanicWith, "dummy: method Module.List is not implemented")
+ })
})
}
« no previous file with comments | « impl/dummy/dummy.go ('k') | impl/memory/context.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698