riak_test/tests/ts_B_activate_table_pass_1.erl

19 lines
434 B
Erlang
Raw Normal View History

-module(ts_B_activate_table_pass_1).
-behavior(riak_test).
2015-09-18 09:22:03 +00:00
-export([
confirm/0
]).
2015-09-18 09:22:03 +00:00
-import(timeseries_util, [
get_ddl/1,
confirm_activate/3
]).
confirm() ->
ClusterType = multiple,
DDL = get_ddl(docs),
Expected = {ok,"GeoCheckin has been activated\n\nWARNING: Nodes in this cluster can no longer be\ndowngraded to a version of Riak prior to 2.0\n"},
2015-09-22 11:39:37 +00:00
confirm_activate(ClusterType, DDL, Expected).