mirror of
https://github.com/valitydev/riak_test.git
synced 2024-11-06 16:45:29 +00:00
12 lines
325 B
Erlang
12 lines
325 B
Erlang
-module(cuttlefish_configuration).
|
|
|
|
-behavior(riak_test).
|
|
-export([confirm/0]).
|
|
|
|
-include_lib("eunit/include/eunit.hrl").
|
|
|
|
confirm() ->
|
|
[Node] = rt:deploy_nodes(1, {cuttlefish, [{"ring_size", "8"}]}),
|
|
{ok, RingSize} = rt:rpc_get_env(Node, [{riak_core, ring_creation_size}]),
|
|
?assertEqual(8, RingSize),
|
|
pass. |