diff --git a/tests/tree_prefs.py b/tests/tree_prefs.py new file mode 100644 index 00000000..1eed5922 --- /dev/null +++ b/tests/tree_prefs.py @@ -0,0 +1,31 @@ +# Bryan Schumaker (11/14/2010) + +from libsaria import trees + +t = trees.PersPrefTree("prefs") + +#def init_pref(key, val): +# path = key.split('.') +# if t.lookup(path) == None: +# t.insert2(path + [val]) + +#def get_pref(key): +# val = t.lookup(key.split('.'))[0] +# print val + +#def set_pref(key, val): +# path = key.split('.') +# t.insert2(path + [val]) + + + +#t.init_pref("libsaria.random", True) +t.set_pref("libsaria.random", True) +t.init_pref("libsaria.a.b", 42) + +print t.get_pref("libsaria.random") +print t.get_pref("libsaria.a.b") + +t.set_pref("libsaria.random", False) +print t.get_pref("libsaria.random") +