//! Integration tests of the `pact_toml` macro. use pact_derive::pact_toml; #[pact_toml] const _: &str = r#" ## A simple test pact. pact = "ExampleOne" [data.1. Request] message = 'string' "#; #[pact_toml] const _: &str = r#" ## Another Pact; if this one ## is generated without errors, ## it means that no duplicate ## data structures were generated ## for ExampleTwo vs. Example One. pact = "ExampleTwo" [data.1. OtherRequest] message = 'string' "#;