mirror of
https://github.com/valitydev/riak_test.git
synced 2024-11-06 16:45:29 +00:00
9 lines
170 B
Erlang
9 lines
170 B
Erlang
|
%% @doc A test that always returns `pass'.
|
||
|
-module(always_pass_test).
|
||
|
-behavior(riak_test).
|
||
|
-export([confirm/0]).
|
||
|
|
||
|
-spec confirm() -> pass | fail.
|
||
|
confirm() ->
|
||
|
pass.
|