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

Side by Side Diff: milo/appengine/common/config_test.go

Issue 2748073006: Milo Refactor: Remove theme support (Closed)
Patch Set: Fix builder.html pointer Created 3 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
OLDNEW
1 // Copyright 2016 The LUCI Authors. All rights reserved. 1 // Copyright 2016 The LUCI Authors. All rights reserved.
2 // Use of this source code is governed under the Apache License, Version 2.0 2 // Use of this source code is governed under the Apache License, Version 2.0
3 // that can be found in the LICENSE file. 3 // that can be found in the LICENSE file.
4 4
5 package settings 5 package common
6 6
7 import ( 7 import (
8 "strings" 8 "strings"
9 "testing" 9 "testing"
10 10
11 "github.com/luci/gae/impl/memory" 11 "github.com/luci/gae/impl/memory"
12 memcfg "github.com/luci/luci-go/common/config/impl/memory" 12 memcfg "github.com/luci/luci-go/common/config/impl/memory"
13 "github.com/luci/luci-go/common/logging/gologger" 13 "github.com/luci/luci-go/common/logging/gologger"
14 "github.com/luci/luci-go/luci_config/server/cfgclient/backend/testconfig " 14 "github.com/luci/luci-go/luci_config/server/cfgclient/backend/testconfig "
15 15
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 81
82 var barCfg = ` 82 var barCfg = `
83 ID: "foo" 83 ID: "foo"
84 ` 84 `
85 85
86 var mockedConfigs = map[string]memcfg.ConfigSet{ 86 var mockedConfigs = map[string]memcfg.ConfigSet{
87 "projects/foo.git": { 87 "projects/foo.git": {
88 "luci-milo.cfg": fooCfg, 88 "luci-milo.cfg": fooCfg,
89 }, 89 },
90 } 90 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698