Add test for hb_set_del

This commit is contained in:
Ebrahim Byagowi 2018-10-19 10:13:53 +03:30
parent 4594730f64
commit 34f357c78a
1 changed files with 3 additions and 0 deletions

View File

@ -118,6 +118,9 @@ test_set_basic (void)
g_assert (!hb_set_has (s, 801));
g_assert (!hb_set_has (s, 802));
hb_set_del (s, 800);
g_assert (!hb_set_has (s, 800));
hb_set_destroy (s);
}