mirror of
https://github.com/valitydev/riak_test.git
synced 2024-11-06 16:45:29 +00:00
1e39711ff3
convergence outside of other tests.
15 lines
349 B
Erlang
15 lines
349 B
Erlang
-module(verify_cluster_converge).
|
|
|
|
-behavior(riak_test).
|
|
-export([confirm/0]).
|
|
|
|
-include_lib("eunit/include/eunit.hrl").
|
|
-include_lib("riakc/include/riakc.hrl").
|
|
|
|
-define(assertDenied(Op), ?assertMatch({error, <<"Permission",_/binary>>}, Op)).
|
|
|
|
confirm() ->
|
|
lager:info("Deploy & cluster some nodes"),
|
|
|
|
_Nodes = rt:build_cluster(4),
|
|
pass. |