25 lines
1.2 KiB
Rust
25 lines
1.2 KiB
Rust
|
// ██████╗ █████╗ ███████╗███████╗██╗███╗ ██╗ ██████╗
|
||
|
// ██╔══██╗██╔══██╗██╔════╝██╔════╝██║████╗ ██║██╔════╝
|
||
|
// ██████╔╝███████║███████╗███████╗██║██╔██╗ ██║██║ ███╗
|
||
|
// ██╔═══╝ ██╔══██║╚════██║╚════██║██║██║╚██╗██║██║ ██║
|
||
|
// ██║ ██║ ██║███████║███████║██║██║ ╚████║╚██████╔╝
|
||
|
// ╚═╝ ╚═╝ ╚═╝╚══════╝╚══════╝╚═╝╚═╝ ╚═══╝ ╚═════╝
|
||
|
|
||
|
#[cfg(test)]
|
||
|
mod passing {
|
||
|
#[test]
|
||
|
fn returns_empty_string() {
|
||
|
assert_eq!(str!(), "");
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn converts_integer_into_string() {
|
||
|
assert_eq!(str!(123), "123");
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn converts_str_into_string() {
|
||
|
assert_eq!(str!("abc"), "abc");
|
||
|
}
|
||
|
}
|