git-stk 0.9.2

Git-native stacked branch workflow helper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod common;

use common::TestRepo;

#[test]
fn credits_lists_inspirations_with_links() {
    let repo = TestRepo::new();

    repo.stack()
        .args(["credits"])
        .assert()
        .success()
        .stdout(predicates::str::contains("Graphite"))
        .stdout(predicates::str::contains("git-branchless"))
        .stdout(predicates::str::contains("https://graphite.dev"))
        .stdout(predicates::str::contains("https://github.com/jj-vcs/jj"));
}