#![cfg(test)]
use quote::quote;
use super::*;
#[test]
fn example_works() {
let warning = Warning::new_deprecated("my_macro")
.old("my_macro()")
.new("my_macro::new()")
.help_link("https:://example.com")
.span(proc_macro2::Span::call_site())
.build();
let got_tokens = quote!(#warning);
let want_tokens = quote!(
#[allow(dead_code)]
#[allow(non_camel_case_types)]
#[allow(non_snake_case)]
fn my_macro() {
#[deprecated(
note = "\n\t\tIt is deprecated to my_macro().\n\t\tPlease instead my_macro::new().\n\n\t\tFor more info see:\n\t\t\t<https:://example.com>"
)]
#[allow(non_upper_case_globals)]
const _w: () = ();
let _ = _w;
}
);
assert_eq!(got_tokens.to_string(), want_tokens.to_string());
}