bernardo-tui 0.2.7

A keyboard-only, distraction-free TUI widget library
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::fs::filesystem_front::FilesystemFront;
use crate::fs::mock_fs::MockFS;
use crate::spath;

#[test]
fn spath_macro() {
    let mockfs = MockFS::new("/").to_fsf();
    let _sp0 = spath!(mockfs);
    let _sp1 = spath!(mockfs, "a");
    let _sp2 = spath!(mockfs, "a", "b");
}