xref: /netbsd-src/external/ibm-public/postfix/dist/src/util/dict_test.ref (revision 230b95665bbd3a9d1a53658a36b1053f8382a519)
1> del bar
2bar: deleted
3> get bar
4bar: not found
5> get nonexist
6nonexist: not found
7> del nonexist
8nonexist: not found
9> get foo
10foo=fooval
11> del foo
12foo: deleted
13> put baz bazval
14baz=bazval
15> get baz
16baz=bazval
17> del baz
18baz: deleted
19> get baz
20baz: not found
21