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/003-rpminfo.phpt | |
parent | 21241e687dc475ddcbfe7a711d72b2858f8b9448 (diff) |
add summary in minimal information set
Diffstat (limited to 'tests/003-rpminfo.phpt')
-rw-r--r-- | tests/003-rpminfo.phpt | 4 |
1 files changed, 3 insertions, 1 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" } |