Add ct test
Which passes
This commit is contained in:
parent
cbd7713c71
commit
39e366a31b
2 changed files with 41 additions and 2 deletions
|
@ -48,6 +48,7 @@
|
|||
code_change/3,
|
||||
book_start/1,
|
||||
book_start/4,
|
||||
book_plainstart/1,
|
||||
book_put/5,
|
||||
book_put/6,
|
||||
book_tempput/7,
|
||||
|
@ -357,6 +358,14 @@ book_start(Opts) ->
|
|||
gen_server:start_link(?MODULE, [set_defaults(Opts)], []).
|
||||
|
||||
|
||||
-spec book_plainstart(list(tuple())) -> {ok, pid()}.
|
||||
|
||||
%% @doc
|
||||
%% Start used in tests to start without linking
|
||||
book_plainstart(Opts) ->
|
||||
gen_server:start(?MODULE, [set_defaults(Opts)], []).
|
||||
|
||||
|
||||
-spec book_tempput(pid(), key(), key(), any(),
|
||||
leveled_codec:index_specs(),
|
||||
leveled_codec:tag(), integer()) -> ok|pause.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue