Check test server availability before using it (#522)

This commit is contained in:
Nikolay Kim 2025-03-14 14:08:43 +05:00 committed by GitHub
parent ab5fb624b7
commit 9a8a2b3216
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 29 additions and 2 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.1.4] - 2025-03-14
* Enable env_logger for test macro
## [0.1.2] - 2021-02-25
* Export runtime from ntex crate

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-macros"
version = "0.1.3"
version = "0.1.4"
description = "ntex proc macros"
readme = "README.md"
authors = ["ntex contributors <team@ntex.rs>"]

View file

@ -262,6 +262,7 @@ pub fn rt_test(_: TokenStream, item: TokenStream) -> TokenStream {
quote! {
#(#attrs)*
fn #name() #ret {
ntex::util::enable_test_logging();
ntex::rt::System::new("test")
.block_on(async { #body })
}
@ -271,6 +272,7 @@ pub fn rt_test(_: TokenStream, item: TokenStream) -> TokenStream {
#[test]
#(#attrs)*
fn #name() #ret {
ntex::util::enable_test_logging();
ntex::rt::System::new("test")
.block_on(async { #body })
}