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

Side by Side Diff: build_scheduler/go/db/memory_test.go

Issue 2246933002: Add Task DB implementation using a local BoltDB. (Closed) Base URL: https://skia.googlesource.com/buildbot@taskdb-impl-track
Patch Set: Fix bad merge. Created 4 years, 4 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
(Empty)
1 package db
2
3 import "testing"
4
5 func TestInMemoryDB(t *testing.T) {
6 TestDB(t, NewInMemoryDB())
7 }
8
9 func TestInMemoryTooManyUsers(t *testing.T) {
10 TestTooManyUsers(t, NewInMemoryDB())
11 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698