riak_test/tests/ts_B_create_table_pass_1.erl
2015-11-19 20:13:26 +00:00

18 lines
502 B
Erlang

-module(ts_B_create_table_pass_1).
-behavior(riak_test).
-include_lib("eunit/include/eunit.hrl").
-export([
confirm/0
]).
confirm() ->
ClusterType = multiple,
DDL = ts_util:get_ddl(docs),
Expected = {ok, "GeoCheckin created\n\nWARNING: After activating GeoCheckin, nodes in this cluster\ncan no longer be downgraded to a version of Riak prior to 2.0\n"},
Got = ts_util:create_bucket_type(ts_util:build_cluster(ClusterType), DDL),
?assertEqual(Expected, Got),
pass.