summaryrefslogtreecommitdiff
path: root/src/couch_log/test/eunit/couch_log_util_test.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/couch_log/test/eunit/couch_log_util_test.erl')
-rw-r--r--src/couch_log/test/eunit/couch_log_util_test.erl68
1 files changed, 52 insertions, 16 deletions
diff --git a/src/couch_log/test/eunit/couch_log_util_test.erl b/src/couch_log/test/eunit/couch_log_util_test.erl
index e97911aa9..ade968146 100644
--- a/src/couch_log/test/eunit/couch_log_util_test.erl
+++ b/src/couch_log/test/eunit/couch_log_util_test.erl
@@ -12,25 +12,24 @@
-module(couch_log_util_test).
-
-include_lib("couch_log/include/couch_log.hrl").
-include_lib("eunit/include/eunit.hrl").
-
get_message_id_test() ->
?assertEqual("--------", couch_log_util:get_msg_id()),
erlang:put(nonce, "deadbeef"),
?assertEqual("deadbeef", couch_log_util:get_msg_id()),
erlang:put(nonce, undefined).
-
level_to_atom_test() ->
- lists:foreach(fun(L) ->
- ?assert(is_atom(couch_log_util:level_to_atom(L))),
- ?assert(is_integer(couch_log_util:level_to_integer(L))),
- ?assert(is_list(couch_log_util:level_to_string(L)))
- end, levels()).
-
+ lists:foreach(
+ fun(L) ->
+ ?assert(is_atom(couch_log_util:level_to_atom(L))),
+ ?assert(is_integer(couch_log_util:level_to_integer(L))),
+ ?assert(is_list(couch_log_util:level_to_string(L)))
+ end,
+ levels()
+ ).
string_p_test() ->
?assertEqual(false, couch_log_util:string_p([])),
@@ -43,13 +42,50 @@ string_p_test() ->
?assertEqual(true, couch_log_util:string_p([$\f])),
?assertEqual(true, couch_log_util:string_p([$\e])).
-
levels() ->
[
- 1, 2, 3, 4, 5, 6, 7, 8, 9,
- "1", "2", "3", "4", "5", "6", "7", "8", "9",
- debug, info, notice, warning, warn, error, err,
- critical, crit, alert, emergency, emerg, none,
- "debug", "info", "notice", "warning", "warn", "error", "err",
- "critical", "crit", "alert", "emergency", "emerg", "none"
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ "1",
+ "2",
+ "3",
+ "4",
+ "5",
+ "6",
+ "7",
+ "8",
+ "9",
+ debug,
+ info,
+ notice,
+ warning,
+ warn,
+ error,
+ err,
+ critical,
+ crit,
+ alert,
+ emergency,
+ emerg,
+ none,
+ "debug",
+ "info",
+ "notice",
+ "warning",
+ "warn",
+ "error",
+ "err",
+ "critical",
+ "crit",
+ "alert",
+ "emergency",
+ "emerg",
+ "none"
].