macros: accept path as crate rename (#5557)

This commit is contained in:
daxpedda
2023-03-19 12:28:43 +01:00
committed by GitHub
parent 0a93ed7e7a
commit 17cc283f58
4 changed files with 34 additions and 34 deletions
@@ -36,13 +36,10 @@ async fn test_worker_threads_not_int() {}
async fn test_worker_threads_and_current_thread() {}
#[tokio::test(crate = 456)]
async fn test_crate_not_ident_int() {}
async fn test_crate_not_path_int() {}
#[tokio::test(crate = "456")]
async fn test_crate_not_ident_invalid() {}
#[tokio::test(crate = "abc::edf")]
async fn test_crate_not_ident_path() {}
async fn test_crate_not_path_invalid() {}
#[tokio::test]
#[test]