#[ allow( unused_imports ) ]
use fs_tools as the_module;
#[ test ]
fn local_smoke_test()
{
let _ = stringify!( the_module );
#[ cfg( all( feature = "enabled", not( feature = "no_std" ) ) ) ]
{
let temp_dir = the_module::TempDir::new();
assert!( temp_dir.base_path.as_os_str().is_empty(), "TempDir should initialize with empty base_path" );
}
#[ cfg( not( all( feature = "enabled", not( feature = "no_std" ) ) ) ) ]
{
}
}
#[ test ]
fn published_smoke_test()
{
#[ cfg( all( feature = "enabled", not( feature = "no_std" ) ) ) ]
{
let _temp_dir = the_module::TempDir::new();
}
}