remove named tests

Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
This commit is contained in:
Yoshua Wuyts
2019-11-07 02:28:36 +01:00
parent 632e95a90f
commit d2ebe0eae7
-13
View File
@@ -14,11 +14,6 @@ fn with_args() {
info!("hello {}", "cats",);
}
#[test]
fn named_arg() {
info!("hello {value}", value = "cats");
}
#[test]
fn kv() {
info!("hello {}", "cats", {
@@ -26,11 +21,3 @@ fn kv() {
cat_2: "nori",
});
}
#[test]
fn kv_and_named_arg() {
info!("hello {value}", value = "cats", {
cat_1: "chashu",
cat_2: "nori",
});
}