aboutsummaryrefslogtreecommitdiff
path: root/src/test_input.txt
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-06-29 03:31:44 +0800
committer魏曹先生 <1992414357@qq.com>2026-06-29 03:31:44 +0800
commitff70307869a547b13850d1eec3f72e8ca3bca265 (patch)
treea6cc55e7cb993697dce95b3d449538ec296693fc /src/test_input.txt
parent03003aec99fc00c2a079bad9fb4e721432a6e6f0 (diff)
feat: add display block support and refactor tests
Deprecate old macros in favor of new deprecated module, replace the external file-based test with inline unit tests, and introduce the `??? >>>` / `??? <<<` display block syntax for conditional content inclusion per arm or globally.
Diffstat (limited to 'src/test_input.txt')
-rw-r--r--src/test_input.txt16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test_input.txt b/src/test_input.txt
deleted file mode 100644
index 97c91c4..0000000
--- a/src/test_input.txt
+++ /dev/null
@@ -1,16 +0,0 @@
-// Auto generated
-use std::collections::HashMap;
-
-pub async fn <<<func_name>>>(
- name: &str,
- data: &[u8],
- params: &HashMap<String, String>,
-) -> Option<Result<Vec<u32>, std::io::Error>> {
- match name {
->>>>>>>>>> arms
-@@@ >>> arms
- "<<<crate_name>>>" => Some(<<<crate_name>>>::exec(data, params).await),
-@@@ <<<
- _ => None,
- }
-}