#![allow(unused_imports)]
use thiserror::Error as _;
use tokio as _;
#[test]
fn test_platform_detection() {
#[cfg(windows)]
{
assert!(bare_script::shell::is_windows());
assert!(!bare_script::shell::is_unix());
}
#[cfg(not(windows))]
{
assert!(!bare_script::shell::is_windows());
assert!(bare_script::shell::is_unix());
}
}