From 809c516a2b2036baaf952a9ad287ae9fa1ccc738 Mon Sep 17 00:00:00 2001 From: Gilbert Wong Date: Fri, 31 Aug 2018 00:04:01 +0800 Subject: [PATCH] delete client testcases duplicated with emqx_mqtt_compat --- test/emqx_client_SUITE.erl | 42 -------------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 test/emqx_client_SUITE.erl diff --git a/test/emqx_client_SUITE.erl b/test/emqx_client_SUITE.erl deleted file mode 100644 index 2fee82759..000000000 --- a/test/emqx_client_SUITE.erl +++ /dev/null @@ -1,42 +0,0 @@ -%% Copyright (c) 2018 EMQ Technologies Co., Ltd. All Rights Reserved. -%% -%% Licensed under the Apache License, Version 2.0 (the "License"); -%% you may not use this file except in compliance with the License. -%% You may obtain a copy of the License at -%% -%% http://www.apache.org/licenses/LICENSE-2.0 -%% -%% Unless required by applicable law or agreed to in writing, software -%% distributed under the License is distributed on an "AS IS" BASIS, -%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -%% See the License for the specific language governing permissions and -%% limitations under the License. - --module(emqx_client_SUITE). - --compile(export_all). --compile(nowarn_export_all). - --include("emqx_mqtt.hrl"). - --include_lib("eunit/include/eunit.hrl"). - -all() -> [{group, connect}]. - -groups() -> [{connect, [start]}]. - -init_per_suite(Config) -> - Config. - -end_per_suite(_Config) -> - ok. - -init_per_group(_Group, Config) -> - Config. - -end_per_group(_Group, _Config) -> - ok. - -start(_Config) -> - {ok, ClientPid, _} = emqx_client:start_link(). -