スキル一覧に戻る
manuelmauro

run-tests

by manuelmauro

Agentic AI skills management, linting, and formatting

0🍴 0📅 2026年1月23日
GitHubで見るManusで実行

SKILL.md


name: run-tests description: Run the test suite and report results license: MIT OR Apache-2.0

Run Tests

Execute the skilo test suite and analyze results.

Test Commands

# Run all tests
cargo test

# Run tests with output
cargo test -- --nocapture

# Run a specific test
cargo test test_name

# Run tests in a specific module
cargo test skill::validator

Test Organization

Tests are organized as follows:

LocationDescription
src/*/tests.rsUnit tests inline with modules
tests/Integration tests

Writing Tests

When adding new functionality:

  1. Add unit tests for individual functions
  2. Add integration tests for CLI commands
  3. Use tempfile for tests that need filesystem access
  4. Use assert_cmd for testing CLI behavior

Example

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_example() {
        assert!(true);
    }
}

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です