#[cfg(unix)]
#[test]
fn test_content_type_guess() {
let ret: (glib::GString, bool) =
gio::functions::content_type_guess(Some(std::path::Path::new("test/")), None);
assert_eq!(ret.0, "inode/directory");
let ret: (glib::GString, bool) =
gio::functions::content_type_guess(Some(std::path::Path::new("test")), None);
assert_eq!(ret.0, "application/octet-stream");
}