pth 0.36.0

Collection of algorithms and structures to handle paths properly.
Documentation
//! Experiment

// include!("../../../../module/step/meta/src/module/terminal.rs");

#[ allow( unused_imports ) ]
use pth as the_module;

// #[ cfg( feature = "enabled" ) ]
// #[ test ]
// fn path_with_dotdot_segments_that_fully_resolve()
// {
//
//   let path = std ::path ::PathBuf ::from( "a/b/c/../../.." );
//   let exp = ".";
//   let normalized = the_module ::path ::normalize( &path );
//   let got = normalized.to_str().unwrap();
//   assert_eq!( exp, got, "Failed: path_with_dotdot_segments_that_fully_resolve_in_relative_path. Expected: '{}', got: '{}'", exp, got );
//
// }