From 30a42d775b289fb111e5d80c7b35cfc9ef875a6b Mon Sep 17 00:00:00 2001 From: Siraaj Khandkar Date: Thu, 14 Aug 2014 15:08:24 -0400 Subject: [PATCH] Extend dictionary pop test. --- test/hope_kv_list_SUITE.erl | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/test/hope_kv_list_SUITE.erl b/test/hope_kv_list_SUITE.erl index 8abb888..97f0ee6 100644 --- a/test/hope_kv_list_SUITE.erl +++ b/test/hope_kv_list_SUITE.erl @@ -61,5 +61,10 @@ t_set_existing(_Config) -> t_pop(_Config) -> KVList = [{a, 1}, {b, 2}, {c, 3}], Dict1 = hope_kv_list:of_kv_list(KVList), - {{some, 1}, Dict2} = hope_kv_list:pop(Dict1, a), - {none , _Dict3} = hope_kv_list:pop(Dict2, a). + {{some, 1} , Dict2} = hope_kv_list:pop(Dict1, a), + {none , Dict3} = hope_kv_list:pop(Dict2, a), + {{some, 2} , Dict4} = hope_kv_list:pop(Dict3, b), + {none , Dict5} = hope_kv_list:pop(Dict4, b), + {{some, 3} , Dict6} = hope_kv_list:pop(Dict5, c), + {none , Dict7} = hope_kv_list:pop(Dict6, c), + [] = hope_kv_list:to_kv_list(Dict7). -- 2.20.1