Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기split-tests
스타5
포크0
업데이트2026년 6월 15일 13:53
Split inline
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Split inline
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | split-tests |
| description | Split inline |
Always split inline #[cfg(test)] mod tests { ... } blocks into co-located _test.rs files.
For each Rust source file src/foo.rs that contains an inline test block:
src/foo_test.rs with use super::*; at the top, followed by the bare test functions (no mod tests { } wrapper)src/foo.rs, replace the inline block with:
#[cfg(test)]
#[path = "foo_test.rs"]
mod tests;
For directory modules like src/app/mod.rs, the test file is src/app/mod_test.rs.
Use this skill when:
#[cfg(test)] mod tests { ... } inline — immediately split it_test.rs companion_test.rs, never inline