diff options
| author | Liam Mitchell <[email protected]> | 2026-03-09 19:06:36 -0700 |
|---|---|---|
| committer | Liam Mitchell <[email protected]> | 2026-03-09 19:06:36 -0700 |
| commit | d1abc50ee9d4fb72efc646e17decafea741caa34 (patch) | |
| tree | e4288e00f2f7ca0391b83d986efcb69d3ba66a83 /thirdparty/ryml/test/test_empty_seq.cpp | |
| parent | Allow requests with invalid content-types unless specified in command line or... (diff) | |
| parent | updated chunk–block analyser (#818) (diff) | |
| download | zen-d1abc50ee9d4fb72efc646e17decafea741caa34.tar.xz zen-d1abc50ee9d4fb72efc646e17decafea741caa34.zip | |
Merge branch 'main' into lm/restrict-content-type
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 |