Extend test for parsing package manifest when "system" is used as a list

This commit is contained in:
Ivan Kravets
2020-06-29 15:06:21 +03:00
parent e9a15b4e9b
commit 2b8aebbdf9

View File

@ -628,7 +628,8 @@ def test_package_json_schema():
"name": "tool-scons",
"description": "SCons software construction tool",
"keywords": "SCons, build",
"url": "http://www.scons.org",
"homepage": "http://www.scons.org",
"system": ["linux_armv6l", "linux_armv7l", "linux_armv8l"],
"version": "3.30101.0"
}
"""
@ -645,6 +646,7 @@ def test_package_json_schema():
"description": "SCons software construction tool",
"keywords": ["scons", "build"],
"homepage": "http://www.scons.org",
"system": ["linux_armv6l", "linux_armv7l", "linux_armv8l"],
"version": "3.30101.0",
},
)