segul 0.23.2

An ultrafast and memory-efficient tool for phylogenomics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod utils;

use clap::crate_version;

#[test]
fn test_version() {
    let version = crate_version!();
    utils::segul(utils::create_tmp_dir().unwrap().path())
        .arg("-V")
        .assert()
        .success()
        .stdout(predicates::str::contains(version));
}