version-manager 3.0.0

A simple version manager for your projects.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::time::Duration;

#[test]
fn cli_tests() {
    trycmd::TestCases::new()
        .case("tests/cmd/help.toml")
        .case("tests/cmd/major.trycmd")
        .case("tests/cmd/minor.trycmd")
        .case("tests/cmd/patch.trycmd")
        .case("tests/cmd/rc.trycmd")
        .timeout(Duration::new(1, 0))
        .env("RUST_BACKTRACE", "1")
        .run();
}