From 1e9c97c21f8a4e55420712b054895ff8b4f9a849 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 19 Jun 2026 01:40:38 +0800 Subject: feat(rola-bucket): add bucket bind management Implement bucket bind CRUD operations and config loading, along with CLI integration for listing, setting, and removing bucket bindings. --- rola-utils/space-system/macros/src/space_root_test.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'rola-utils/space-system/macros/src') diff --git a/rola-utils/space-system/macros/src/space_root_test.rs b/rola-utils/space-system/macros/src/space_root_test.rs index 71c48c0..0c15e39 100644 --- a/rola-utils/space-system/macros/src/space_root_test.rs +++ b/rola-utils/space-system/macros/src/space_root_test.rs @@ -64,8 +64,8 @@ pub(crate) fn internal_space_root_test_derive(input: TokenStream) -> TokenStream use space_system::{Space, SpaceRoot, SpaceRootFindPattern}; use std::env::set_current_dir; - #[tokio::test] - async fn test_create_space() { + #[test] + fn test_create_space() { let sandbox = rola_test_sandbox(stringify!(#name)); set_current_dir(&*sandbox).unwrap(); @@ -84,7 +84,7 @@ pub(crate) fn internal_space_root_test_derive(input: TokenStream) -> TokenStream println!("Checking if {} absolute directory does not exist before initialization", stringify!(#name)); assert!(!dir.exists()); - space.init_here().await.unwrap(); + space.init_here().unwrap(); println!("Checking if {} absolute directory exists after initialization", stringify!(#name)); assert!(dir.exists()); @@ -98,7 +98,7 @@ pub(crate) fn internal_space_root_test_derive(input: TokenStream) -> TokenStream println!("Checking if {} does not exist before initialization", stringify!(#name)); assert!(space.space_dir_current().is_err()); - space.init_here().await.unwrap(); + space.init_here().unwrap(); println!("Checking if {} exists after initialization", stringify!(#name)); assert!(space.space_dir_current().is_ok()); -- cgit