mirror of
https://github.com/Noratrieb/mono-fmt.git
synced 2026-01-16 16:25:07 +01:00
wow it works
This commit is contained in:
parent
d43f4577e6
commit
86441cf10b
3 changed files with 109 additions and 11 deletions
|
|
@ -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");
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue