worktree-io 0.17.6

A CLI tool to open GitHub issues as git worktree workspaces
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use super::*;
#[test]
fn test_display_installed() {
    let s = SchemeStatus::Installed {
        path: "/Applications/Foo.app".into(),
    };
    assert_eq!(s.to_string(), "Installed at /Applications/Foo.app");
}
#[test]
fn test_display_not_installed() {
    assert_eq!(SchemeStatus::NotInstalled.to_string(), "Not installed");
}
#[test]
fn test_status_does_not_panic() {
    let _ = status();
}