mirror of
https://github.com/valitydev/riak_test.git
synced 2024-11-07 17:08:55 +00:00
8 lines
148 B
Erlang
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.
|