diff options
author | Remi Collet <remi@remirepo.net> | 2018-02-09 14:19:46 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2018-02-09 14:19:46 +0100 |
commit | 706aa9181a857b95854e7f27b07edc8d4e48503c (patch) | |
tree | 81d199bb1618688c40394b0dbbca8bc91d229e96 /tests | |
parent | 21241e687dc475ddcbfe7a711d72b2858f8b9448 (diff) |
add summary in minimal information set
Diffstat (limited to 'tests')
-rw-r--r-- | tests/003-rpminfo.phpt | 4 | ||||
-rw-r--r-- | tests/007-rpmdbinfo.phpt | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/tests/003-rpminfo.phpt b/tests/003-rpminfo.phpt index f878c7f..e5e01ab 100644 --- a/tests/003-rpminfo.phpt +++ b/tests/003-rpminfo.phpt @@ -8,13 +8,15 @@ var_dump(rpminfo(__DIR__ . "/bidon.rpm")); ?> Done --EXPECTF-- -array(4) { +array(5) { ["Name"]=> string(5) "bidon" ["Version"]=> string(1) "1" ["Release"]=> string(11) "1.fc25.remi" + ["Summary"]=> + string(5) "Bidon" ["Arch"]=> string(6) "x86_64" } diff --git a/tests/007-rpmdbinfo.phpt b/tests/007-rpmdbinfo.phpt index 6ef5aa1..6fe3116 100644 --- a/tests/007-rpmdbinfo.phpt +++ b/tests/007-rpmdbinfo.phpt @@ -12,13 +12,15 @@ Done bool(false) array(1) { [0]=> - array(4) { + array(5) { ["Name"]=> string(4) "bash" ["Version"]=> string(%d) "%s" ["Release"]=> string(%d) "%s" + ["Summary"]=> + string(26) "The GNU Bourne Again shell" ["Arch"]=> string(%d) "%s" } |