mirror of
https://github.com/valitydev/riak_test.git
synced 2024-11-06 08:35:22 +00:00
452747413f
When included in an automatically generated list of tests that may only contain one test, ensures riak_test will continue if that test fails.
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.
|