diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-03-21 18:29:51 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-03-21 19:34:28 +0100 |
commit | f67d7e7ba88fb882beb1c43b5efbb9c8b2345eb7 (patch) | |
tree | ec1c2a6e09698baf313fcd44327a6c02bedefbb6 /lib/erl_interface/test/erl_match_SUITE.erl | |
parent | 21ae34f1d5d19e0d42a2b2ed77c0e0b092865b96 (diff) | |
download | otp-f67d7e7ba88fb882beb1c43b5efbb9c8b2345eb7.tar.gz otp-f67d7e7ba88fb882beb1c43b5efbb9c8b2345eb7.tar.bz2 otp-f67d7e7ba88fb882beb1c43b5efbb9c8b2345eb7.zip |
Remove unncecessary exports
Diffstat (limited to 'lib/erl_interface/test/erl_match_SUITE.erl')
-rw-r--r-- | lib/erl_interface/test/erl_match_SUITE.erl | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/lib/erl_interface/test/erl_match_SUITE.erl b/lib/erl_interface/test/erl_match_SUITE.erl index a40f86f277..5a40c19e3b 100644 --- a/lib/erl_interface/test/erl_match_SUITE.erl +++ b/lib/erl_interface/test/erl_match_SUITE.erl @@ -24,8 +24,7 @@ -include_lib("common_test/include/ct.hrl"). -include("erl_match_SUITE_data/match_test_cases.hrl"). --export([all/0, suite/0,groups/0,init_per_suite/1, end_per_suite/1, - init_per_group/2,end_per_group/2, +-export([all/0, suite/0, atoms/1, lists/1, tuples/1, references/1, pids/1, ports/1, bind/1, integers/1, floats/1, binaries/1, strings/1]). @@ -34,27 +33,13 @@ %% This test suite tests the erl_match() function. -suite() -> [{ct_hooks,[ts_install_cth]}]. +suite() -> + [{ct_hooks,[ts_install_cth]}]. all() -> [atoms, lists, tuples, references, pids, ports, bind, integers, floats, binaries, strings]. -groups() -> - []. - -init_per_suite(Config) -> - Config. - -end_per_suite(_Config) -> - ok. - -init_per_group(_GroupName, Config) -> - Config. - -end_per_group(_GroupName, Config) -> - Config. - atoms(Config) when is_list(Config) -> P = start_matcher(Config), |