aboutsummaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.com>2019-12-11 21:21:21 -0500
committerXavier Claessens <xavier.claessens@collabora.com>2019-12-12 18:30:17 -0500
commit38953d8ee32bf025018c44e1e5a5edc04319dd90 (patch)
treea2124a8857abf37fca3a9594342c2e142ed56a27 /test cases
parent49082f96698fbb74b587ca774dae45b7b5943a16 (diff)
downloadmeson-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.build2
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)