mirror of
https://github.com/valitydev/riak_test.git
synced 2024-11-07 17:08:55 +00:00
19 lines
346 B
Erlang
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).
|