summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2018-01-25 02:10:17 +0100
committerlouiz’ <louiz@louiz.org>2018-01-25 02:10:17 +0100
commit3f8513726512308b1b48d3370d7acf0f63752725 (patch)
tree04a02d673eeff7b2081df0b5e8b33a1a8a43c3ac /tests
parentde73a728f28df7db3fddd431b07ef5bf6742fb1a (diff)
parent97c8e2fed3b510d8048a386230b480c3044153d4 (diff)
downloadbiboumi-3f8513726512308b1b48d3370d7acf0f63752725.tar.gz
biboumi-3f8513726512308b1b48d3370d7acf0f63752725.tar.bz2
biboumi-3f8513726512308b1b48d3370d7acf0f63752725.tar.xz
biboumi-3f8513726512308b1b48d3370d7acf0f63752725.zip
Merge tag '7.2'
Diffstat (limited to 'tests')
-rw-r--r--tests/utils.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/utils.cpp b/tests/utils.cpp
index 6de19f0..99c7040 100644
--- a/tests/utils.cpp
+++ b/tests/utils.cpp
@@ -175,11 +175,11 @@ TEST_CASE("dirname")
TEST_CASE("is_in")
{
- CHECK((is_one_of<int, float, std::string, int>) == true);
- CHECK((is_one_of<int, float, std::string>) == false);
- CHECK((is_one_of<int>) == false);
- CHECK((is_one_of<int, int>) == true);
- CHECK((is_one_of<bool, int>) == false);
- CHECK((is_one_of<bool, bool>) == true);
- CHECK((is_one_of<bool, bool, bool, bool, bool, int>) == true);
+ CHECK((is_one_of<int, float, std::string, int>::value) == true);
+ CHECK((is_one_of<int, float, std::string>::value) == false);
+ CHECK((is_one_of<int>::value) == false);
+ CHECK((is_one_of<int, int>::value) == true);
+ CHECK((is_one_of<bool, int>::value) == false);
+ CHECK((is_one_of<bool, bool>::value) == true);
+ CHECK((is_one_of<bool, bool, bool, bool, bool, int>::value) == true);
}