1
0

lib.rs 328 B

12345678910111213
  1. //! Tests for our html! procedural macro
  2. //!
  3. //! To run all tests in this library:
  4. //!
  5. //! cargo test --color=always --package html-macro-test --lib "" -- --nocapture
  6. // #![feature(proc_macro_hygiene)]
  7. // TODO: Deny warnings to ensure that the macro isn't creating any warnings.
  8. // #![deny(warnings)]
  9. #[cfg(test)]
  10. mod tests;