use std::{ffi::OsStr, path::Path};
use unixstring::UnixString;
fn check_empty(empty: UnixString) {
assert_eq!(empty.to_str().ok(), Some(""));
assert_eq!(empty.as_os_str(), OsStr::new(""));
assert_eq!(empty.as_path(), Path::new(""));
assert_eq!(empty.as_bytes(), &[]);
assert_eq!(empty.as_bytes_with_nul(), &[0]);
}
#[test]
fn new() {
let empty = UnixString::new();
check_empty(empty);
}
#[test]
fn with_capacity() {
check_empty(UnixString::with_capacity(5));
check_empty(UnixString::with_capacity(0));
}