Applying ModuleHelper variable mgmt to xfconf -> improvements on MH (#2188) (#2191)

* applying MH variable mgmt to xfconf - improvements on MH

* added changelog fragment

(cherry picked from commit 9aec9b502e)

Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
patchback[bot] 2021-04-06 21:51:12 +02:00 committed by GitHub
parent 0f1ccc07c5
commit d2cdca416c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 48 additions and 44 deletions

View file

@ -109,7 +109,7 @@ def test_dependency_ctxmgr():
def test_variable_meta():
meta = VarMeta()
assert meta.output is False
assert meta.output is True
assert meta.diff is False
assert meta.value is None
meta.set_value("abc")
@ -124,7 +124,7 @@ def test_variable_meta():
def test_variable_meta_diff():
meta = VarMeta(diff=True)
assert meta.output is False
assert meta.output is True
assert meta.diff is True
assert meta.value is None
meta.set_value("abc")