eventcore-macros 0.1.7

Procedural macros for the EventCore event sourcing library
Documentation
//! Tests for the #[derive(Command)] procedural macro.

// This file would normally contain trybuild tests to verify that the macro
// generates correct code and produces appropriate error messages.
//
// However, since eventcore types are not available in this isolated test,
// we'll create a placeholder test that can be expanded when the macro is
// integrated with the main eventcore crate.

#[test]
fn test_derive_command_placeholder() {
    // Placeholder test until we can properly test with eventcore types
    let _placeholder = "Macro tests require integration with eventcore types";
}

// Future tests would look like:
//
// #[test]
// fn test_derive_command() {
//     let t = trybuild::TestCases::new();
//     t.pass("tests/ui/pass/*.rs");
//     t.compile_fail("tests/ui/fail/*.rs");
// }