diff options
| author | zousar <[email protected]> | 2026-02-26 11:05:07 -0700 |
|---|---|---|
| committer | zousar <[email protected]> | 2026-02-26 11:05:07 -0700 |
| commit | d1e517434899bdb0a98a3d8a3a7764f7aa59518f (patch) | |
| tree | 59cc5211c506c777b3be90aa8ad980cef31a2e53 /thirdparty/ryml/test/test_empty_map.cpp | |
| parent | updatefrontend (diff) | |
| parent | work around doctest shutdown issues with static CRT (#784) (diff) | |
| download | zen-d1e517434899bdb0a98a3d8a3a7764f7aa59518f.tar.xz zen-d1e517434899bdb0a98a3d8a3a7764f7aa59518f.zip | |
Merge branch 'main' into zs/web-ui-improvements
Diffstat (limited to 'thirdparty/ryml/test/test_empty_map.cpp')
| -rw-r--r-- | thirdparty/ryml/test/test_empty_map.cpp | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/thirdparty/ryml/test/test_empty_map.cpp b/thirdparty/ryml/test/test_empty_map.cpp deleted file mode 100644 index 44d818cc6..000000000 --- a/thirdparty/ryml/test/test_empty_map.cpp +++ /dev/null @@ -1,43 +0,0 @@ -#include "./test_group.hpp" - -namespace c4 { -namespace yml { - - -CASE_GROUP(EMPTY_MAP) -{ - -ADD_CASE_TO_GROUP("empty map, explicit", -"{}", - MAP -); - - -ADD_CASE_TO_GROUP("empty map, explicit, whitespace", -" {}", - MAP -); - - -ADD_CASE_TO_GROUP("empty map, multiline", -R"({ - -} -)", - MAP -); - - -ADD_CASE_TO_GROUP("empty map, multilines", -R"({ -# ksjdfkjhsdfkjhsdfkjh - - -} -)", - MAP - ); -} - -} // namespace yml -} // namespace c4 |