2015-11-06 23:27:42 +00:00
|
|
|
-module(ts_A_put_simple).
|
2015-09-18 09:22:03 +00:00
|
|
|
|
2015-09-21 11:46:19 +00:00
|
|
|
-behavior(riak_test).
|
2015-09-18 09:22:03 +00:00
|
|
|
|
2015-09-30 14:25:12 +00:00
|
|
|
-export([confirm/0]).
|
2015-09-21 11:46:19 +00:00
|
|
|
|
2015-09-30 14:15:00 +00:00
|
|
|
-include_lib("eunit/include/eunit.hrl").
|
2015-09-21 11:46:19 +00:00
|
|
|
|
|
|
|
confirm() ->
|
|
|
|
Cluster = single,
|
2015-09-30 14:15:00 +00:00
|
|
|
TestType = normal,
|
|
|
|
DDL = timeseries_util:get_ddl(docs),
|
|
|
|
Obj = [timeseries_util:get_valid_obj()],
|
2015-11-06 23:27:42 +00:00
|
|
|
timeseries_util:confirm_put(Cluster, TestType, DDL, Obj, ok).
|