riak_test/tests/always_fail_test.erl
rzezeski f78de19560 Add always_fail_test
Add a test that always fails to make sure that the pass/fail logic is
working.
2014-05-21 17:13:27 +00:00

8 lines
148 B
Erlang

%% @doc A test that always returns `fail'.
-module(always_fail_test).
-export([confirm/0]).
-spec confirm() -> pass | fail.
confirm() ->
fail.