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());
}