mirror of
https://github.com/valitydev/riak_test.git
synced 2024-11-06 08:35:22 +00:00
f78de19560
Add a test that always fails to make sure that the pass/fail logic is working.
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.
|