From f34d5ce2787aff79c9e673e1a79e75f5e4cc66b5 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Thu, 27 Feb 2020 07:05:57 +1100 Subject: [PATCH] introspection: add test for template-template-type reflection --- test/introspection.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/introspection.cpp b/test/introspection.cpp index 7e097c9f..492e261b 100644 --- a/test/introspection.cpp +++ b/test/introspection.cpp @@ -100,6 +100,12 @@ int main () "templated_with_type" ); + tap.expect_eq ( + cruft::type_name>> (), + std::string_view {"templated_with_type >"}, + "templated_with_type" + ); + tap.expect_eq ( cruft::type_name> (), std::string_view {"templated_with_value<-1>"},