| Index: go/src/infra/gae/libs/gae/taskqueue_testable.go
|
| diff --git a/go/src/infra/gae/libs/gae/taskqueue_testable.go b/go/src/infra/gae/libs/gae/taskqueue_testable.go
|
| deleted file mode 100644
|
| index a863455c5dc5ae8ae805e66130eb61e3b2824cde..0000000000000000000000000000000000000000
|
| --- a/go/src/infra/gae/libs/gae/taskqueue_testable.go
|
| +++ /dev/null
|
| @@ -1,22 +0,0 @@
|
| -// Copyright 2015 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -package gae
|
| -
|
| -// QueueData is {queueName: {taskName: *TQTask}}
|
| -type QueueData map[string]map[string]*TQTask
|
| -
|
| -// AnonymousQueueData is {queueName: [*TQTask]}
|
| -type AnonymousQueueData map[string][]*TQTask
|
| -
|
| -// TQTestable is the testable interface for fake taskqueue implementations
|
| -type TQTestable interface {
|
| - Testable
|
| -
|
| - CreateQueue(queueName string)
|
| - GetScheduledTasks() QueueData
|
| - GetTombstonedTasks() QueueData
|
| - GetTransactionTasks() AnonymousQueueData
|
| - ResetTasks()
|
| -}
|
|
|