riak_test/tests/ts_A_create_table_fail_1.erl
Gordon Guthrie 9a53f901c7 erk, revert
2015-10-02 14:56:50 +00:00

19 lines
346 B
Erlang

-module(ts_A_create_table_fail_1).
-behavior(riak_test).
-export([
confirm/0
]).
-import(timeseries_util, [
get_ddl/1,
confirm_create/3
]).
confirm() ->
ClusterType = single,
DDL = get_ddl(shortkey_fail),
Expected = {ok,"this should fail - but doesnt currently"},
confirm_create(ClusterType, DDL, Expected).