rust-async-testing

Installation
SKILL.md

Rust Async Testing Patterns

Best practices for testing async Rust code with Tokio.

Core Patterns

Basic Async Test

#[tokio::test]
async fn test_episode_creation() {
    let memory = SelfLearningMemory::new(Default::default()).await?;
    let id = memory.start_episode("Test", ctx, TaskType::CodeGen).await;
    assert!(!id.is_empty());
}

Time-Based Testing

Installs
38
GitHub Stars
9
First Seen
Feb 21, 2026
rust-async-testing — d-o-hub/rust-self-learning-memory