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

Unified Diff: impl/prod/everything_test.go

Issue 1498963003: Move gaelogging from luci/luci-go to luci/gae (Closed) Base URL: https://github.com/luci/gae.git@master
Patch Set: rebase Created 5 years 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/prod/context.go ('k') | impl/prod/logger.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: impl/prod/everything_test.go
diff --git a/impl/prod/everything_test.go b/impl/prod/everything_test.go
index 577c3f46c14c4e7cead3c754d88c68bac9f25d31..bf0924c1552cc99b39da5c5239108a1bb20ae8ac 100644
--- a/impl/prod/everything_test.go
+++ b/impl/prod/everything_test.go
@@ -13,6 +13,7 @@ import (
"github.com/luci/gae/service/blobstore"
"github.com/luci/gae/service/datastore"
"github.com/luci/gae/service/info"
+ "github.com/luci/luci-go/common/logging"
. "github.com/smartystreets/goconvey/convey"
"golang.org/x/net/context"
"google.golang.org/appengine/aetest"
@@ -53,6 +54,10 @@ func TestBasicDatastore(t *testing.T) {
ds := datastore.Get(ctx)
inf := info.Get(ctx)
+ // You have to visually confirm that this actually happens in the stdout
+ // of the test... yeah I know.
+ logging.Infof(ctx, "I am a banana")
+
Convey("Can probe/change Namespace", func() {
So(inf.GetNamespace(), ShouldEqual, "")
ctx, err = inf.Namespace("wat")
« no previous file with comments | « impl/prod/context.go ('k') | impl/prod/logger.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698