riak_test/tests/always_pass_test.erl
Ted Burghart 452747413f Add test that always passes.
When included in an automatically generated list of tests that may only contain one test, ensures riak_test will continue if that test fails.
2015-03-07 07:57:10 -05:00

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.