diff options
author | Micael Karlberg <[email protected]> | 2019-07-17 18:52:35 +0200 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2019-07-17 18:52:35 +0200 |
commit | b764241473119444226b896cf6e11f20250d4001 (patch) | |
tree | 8f550b112210c9f93a13e71348e1610c0b25e861 /lib | |
parent | 4f64a122d214cbe9ba6566b3c3a7da9398e425bd (diff) | |
download | otp-b764241473119444226b896cf6e11f20250d4001.tar.gz otp-b764241473119444226b896cf6e11f20250d4001.tar.bz2 otp-b764241473119444226b896cf6e11f20250d4001.zip |
[megaco|test] Removed the "compile all" compiler directive (examples)
Removed the "compile all" compiler directive for the examples
megaco test suite.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/megaco/test/megaco_examples_test.erl | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/lib/megaco/test/megaco_examples_test.erl b/lib/megaco/test/megaco_examples_test.erl index 10ca0375f6..fdf9fe29ff 100644 --- a/lib/megaco/test/megaco_examples_test.erl +++ b/lib/megaco/test/megaco_examples_test.erl @@ -25,7 +25,20 @@ -module(megaco_examples_test). --compile(export_all). +-export([ + all/0, + groups/0, + + init_per_group/2, + end_per_group/2, + init_per_testcase/2, + end_per_testcase/2, + + simple/1, + + t/0, t/1 + ]). + -include("megaco_test_lib.hrl"). -include_lib("megaco/include/megaco.hrl"). |