wit 0.16.0

A tool for building and publishing WIT packages to a registry.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::support::*;
use assert_cmd::prelude::*;
use predicates::str::contains;

mod support;

#[test]
fn help() {
    for arg in ["-V", "--version"] {
        wit(arg.split_whitespace())
            .assert()
            .stdout(contains(env!("CARGO_PKG_VERSION")))
            .success();
    }
}