| Index: appengine/cmd/milo/console/html_data.go
|
| diff --git a/appengine/cmd/milo/console/html_data.go b/appengine/cmd/milo/console/html_data.go
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0ffecc791ad69fff07a01b5a80e217825649394e
|
| --- /dev/null
|
| +++ b/appengine/cmd/milo/console/html_data.go
|
| @@ -0,0 +1,16 @@
|
| +// Copyright 2016 The LUCI Authors. All rights reserved.
|
| +// Use of this source code is governed under the Apache License, Version 2.0
|
| +// that can be found in the LICENSE file.
|
| +
|
| +package console
|
| +
|
| +import "github.com/luci/luci-go/appengine/cmd/milo/settings"
|
| +
|
| +// TestableConsole is a subclass of Build that interfaces with TestableHandler and
|
| +// includes sample test data.
|
| +type TestableConsole struct{ Console }
|
| +
|
| +// TestData returns sample test data.
|
| +func (x Console) TestData() (result []settings.TestBundle) {
|
| + return
|
| +}
|
|
|