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

Side by Side Diff: impl/memory/info_test.go

Issue 1766593002: Add a MustNamespace that panics if the namespace wasn't valid (Closed) Base URL: https://github.com/luci/gae.git@master
Patch Set: Add MustNamespace to the interface 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 unified diff | Download patch
« no previous file with comments | « impl/memory/info.go ('k') | impl/prod/info.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 package memory
6
7 import (
8 "testing"
9
10 "github.com/luci/gae/service/info"
11 "golang.org/x/net/context"
12
13 . "github.com/smartystreets/goconvey/convey"
14 )
15
16 func TestMustNamespace(t *testing.T) {
17 Convey("MustNamespace panics", t, func() {
18 c := Use(context.Background())
19 i := info.Get(c)
20
21 So(func() {
22 i.MustNamespace("valid_namespace_name")
23 }, ShouldNotPanic)
24 So(func() {
25 i.MustNamespace("invalid namespace name")
26 }, ShouldPanic)
27 })
28 }
OLDNEW
« no previous file with comments | « impl/memory/info.go ('k') | impl/prod/info.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698