diff options
| author | Fred Hebert <mononcqc@ferd.ca> | 2014-07-15 08:20:38 -0400 |
|---|---|---|
| committer | Fred Hebert <mononcqc@ferd.ca> | 2014-07-15 08:20:38 -0400 |
| commit | 7f7e36740f17a7e8a5193c1cdebbedf7cda05a8b (patch) | |
| tree | b1e3c26adaf9b095499ba21c781ad7b911620f4d /inttest/ct1/test_SUITE.erl | |
| parent | 0d1ae7a4683b1e4a305eb848e70ec641984a1067 (diff) | |
| parent | dcfa6daf30cbd7bd1e570636d1ec76fda799eb26 (diff) | |
Merge branch 'NineFX-erl-args-to-end'
Diffstat (limited to 'inttest/ct1/test_SUITE.erl')
| -rw-r--r-- | inttest/ct1/test_SUITE.erl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/inttest/ct1/test_SUITE.erl b/inttest/ct1/test_SUITE.erl index 92f2b2e..e8a2bb8 100644 --- a/inttest/ct1/test_SUITE.erl +++ b/inttest/ct1/test_SUITE.erl @@ -5,7 +5,13 @@ -include_lib("ct.hrl"). all() -> - [simple_test]. + [simple_test, + app_config_file_test]. simple_test(Config) -> io:format("Test: ~p\n", [Config]). + +app_config_file_test(_Config) -> + application:start(a1), + {ok, bar} = application:get_env(a1, foo), + application:stop(a1). |
