worktrunk 0.42.0

A CLI for Git worktree management, designed for parallel AI agent workflows
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::common::wt_command;
use insta_cmd::assert_cmd_snapshot;

#[test]
fn test_show_theme() {
    let mut cmd = wt_command();
    cmd.arg("config").arg("shell").arg("show-theme");

    assert_cmd_snapshot!(cmd);
}