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_generic_seq.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_generic_seq.cpp')
| -rw-r--r-- | thirdparty/ryml/test/test_generic_seq.cpp | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/thirdparty/ryml/test/test_generic_seq.cpp b/thirdparty/ryml/test/test_generic_seq.cpp deleted file mode 100644 index 45f9c1d3e..000000000 --- a/thirdparty/ryml/test/test_generic_seq.cpp +++ /dev/null @@ -1,47 +0,0 @@ -#include "./test_group.hpp" - -namespace c4 { -namespace yml { - -CASE_GROUP(GENERIC_SEQ) -{ - -ADD_CASE_TO_GROUP("generic seq v0", -R"( -- item 1 -- item 2 -- - item 3.1 - - item 3.2 -- key 1: value 1 - key 2: value 2 -)", - L{ - N("item 1"), - N("item 2"), - N(L{N("item 3.1"), N("item 3.2")}), - N(L{N("key 1", "value 1"), N("key 2", "value 2")}) - } -); - -ADD_CASE_TO_GROUP("generic seq v1", -R"( -- item 1 -- item 2 -- - - item 3.1 - - item 3.2 -- - key 1: value 1 - key 2: value 2 -)", - L{ - N("item 1"), - N("item 2"), - N(L{N("item 3.1"), N("item 3.2")}), - N(L{N("key 1", "value 1"), N("key 2", "value 2")}) - } -); -} - -} // namespace yml -} // namespace c4 |