update test to clarify parsing

This commit is contained in:
Peter Josef Scheibel
2022-10-21 15:31:40 -06:00
committed by Gregory Becker
parent 8dbd7b423b
commit e09623060b

View File

@@ -200,11 +200,13 @@ def test_config_set_pkg_property_new(self, mutable_mock_repo):
update_packages(
"mpileaks",
"package_attributes",
{"x": "1", "y": "true"},
{"x": "1", "y": "true", "w": "yes", "z": "yesterday"},
)
spec = concretize("mpileaks")
assert spec.package.x == 1
assert spec.package.y == True
assert spec.package.w == True
assert spec.package.z == "yesterday"
def test_config_set_pkg_property_collecton_unsupported(self, mutable_mock_repo):
"""Test that an error is raised if you attempt to assign a list value"""