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_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_empty_seq.cpp')
| -rw-r--r-- | thirdparty/ryml/test/test_empty_seq.cpp | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/thirdparty/ryml/test/test_empty_seq.cpp b/thirdparty/ryml/test/test_empty_seq.cpp deleted file mode 100644 index 2b8bcab7b..000000000 --- a/thirdparty/ryml/test/test_empty_seq.cpp +++ /dev/null @@ -1,40 +0,0 @@ -#include "./test_group.hpp" - -namespace c4 { -namespace yml { - -CASE_GROUP(EMPTY_SEQ) -{ - -ADD_CASE_TO_GROUP("empty seq, explicit", -"[]", - SEQ -); - - -ADD_CASE_TO_GROUP("empty seq, explicit, whitespace", -" []", - SEQ -); - - -ADD_CASE_TO_GROUP("empty seq, multiline", -R"([ -] -)", - SEQ -); - -ADD_CASE_TO_GROUP("empty seq, multilines", -R"([ -# ksjdfkjhsdfkjhsdfkjh - - -] -)", - SEQ -); -} - -} // namespace yml -} // namespace c4 |