mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Check test server availability before using it (#522)
This commit is contained in:
parent
ab5fb624b7
commit
9a8a2b3216
9 changed files with 29 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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>"]
|
||||
|
|
|
@ -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 })
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue