diff options
author | Xavier Claessens <xavier.claessens@collabora.com> | 2019-12-11 21:21:21 -0500 |
---|---|---|
committer | Xavier Claessens <xavier.claessens@collabora.com> | 2019-12-12 18:30:17 -0500 |
commit | 38953d8ee32bf025018c44e1e5a5edc04319dd90 (patch) | |
tree | a2124a8857abf37fca3a9594342c2e142ed56a27 /test cases | |
parent | 49082f96698fbb74b587ca774dae45b7b5943a16 (diff) | |
download | meson-38953d8ee32bf025018c44e1e5a5edc04319dd90.zip meson-38953d8ee32bf025018c44e1e5a5edc04319dd90.tar.gz meson-38953d8ee32bf025018c44e1e5a5edc04319dd90.tar.bz2 |
summary: Add bool_yn keyword argument
Diffstat (limited to 'test cases')
-rw-r--r-- | test cases/unit/74 summary/meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test cases/unit/74 summary/meson.build b/test cases/unit/74 summary/meson.build index 392d940..c689f96 100644 --- a/test cases/unit/74 summary/meson.build +++ b/test cases/unit/74 summary/meson.build @@ -9,3 +9,5 @@ summary('Configuration', {'Some boolean': false, 'A list': ['string', 1, true], }) summary('Configuration', 'A number', 1) +summary('Configuration', 'yes', true, bool_yn : true) +summary('Configuration', 'no', false, bool_yn : true) |