Skip to content

Commit

Permalink
remove named tests
Browse files Browse the repository at this point in the history
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
  • Loading branch information
yoshuawuyts committed Nov 9, 2019
1 parent 40b7f3b commit 6ad3610
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions tests/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,10 @@ fn with_args() {
info!("hello {}", "cats",);
}

#[test]
fn named_arg() {
info!("hello {value}", value = "cats");
}

#[test]
fn kv() {
info!("hello {}", "cats", {
cat_1: "chashu",
cat_2: "nori",
});
}

#[test]
fn kv_and_named_arg() {
info!("hello {value}", value = "cats", {
cat_1: "chashu",
cat_2: "nori",
});
}

0 comments on commit 6ad3610

Please sign in to comment.