wow it works

This commit is contained in:
nora 2022-09-11 22:21:29 +02:00
parent d43f4577e6
commit 86441cf10b
3 changed files with 109 additions and 11 deletions

View file

@ -139,7 +139,6 @@ mod tests {
// for the macros
use crate as mono_fmt;
use crate::arguments::DebugArg;
use crate::format;
#[test]
@ -149,8 +148,8 @@ mod tests {
}
#[test]
fn debug() {
let result = format((DebugArg("uwu"),));
assert_eq!(result, "\"uwu\"");
fn display() {
let result = format!("{}", "uwu");
assert_eq!(result, "uwu");
}
}