Test tas!()

This commit is contained in:
Peter McEvoy 2023-02-03 11:59:53 -05:00
parent d072c3ecea
commit f41cf8cc38

View File

@ -6,3 +6,14 @@ pub mod mem;
pub mod mug;
pub mod noun;
pub mod serialization;
#[cfg(test)]
mod tests {
#[test]
fn tas() {
use ares_macros::tas;
assert_eq!(tas!(b"cut"), 0x747563);
assert_eq!(tas!(b"dec"), 0x636564);
}
}