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

Unified 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: 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 side-by-side diff with in-line comments
Download patch
Index: build_scheduler/go/db/memory_test.go
diff --git a/build_scheduler/go/db/memory_test.go b/build_scheduler/go/db/memory_test.go
new file mode 100644
index 0000000000000000000000000000000000000000..bb27e2f01d5dbdbd2650f0e9e8ab82bd3c20fc13
--- /dev/null
+++ b/build_scheduler/go/db/memory_test.go
@@ -0,0 +1,11 @@
+package db
+
+import "testing"
+
+func TestInMemoryDB(t *testing.T) {
+ TestDB(t, NewInMemoryDB())
+}
+
+func TestInMemoryTooManyUsers(t *testing.T) {
+ TestTooManyUsers(t, NewInMemoryDB())
+}

Powered by Google App Engine
This is Rietveld 408576698