summaryrefslogtreecommitdiff
path: root/test/src
diff options
context:
space:
mode:
Diffstat (limited to 'test/src')
-rw-r--r--test/src/db.erl5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/src/db.erl b/test/src/db.erl
index 8c90842..a2ca16e 100644
--- a/test/src/db.erl
+++ b/test/src/db.erl
@@ -2,7 +2,10 @@
%%% See LICENSE for licensing information.
-module(db).
--export([get_by_indices/3]).
+-export([get_by_indices/3, size/0]).
+
+size() ->
+ 0.
get_by_indices(Start, _End, _Options) when Start < 0 ->
[];