cargo-up 0.0.6

Upgrade your dependencies by automatically fixing your code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use insta::assert_snapshot;
mod utils;

#[test]
fn test_package_not_found() {
    let err = utils::run_err("../fixtures/minimum_version/on", &["up", "dep", "notfound"]);
    assert_snapshot!(err);
}

#[test]
fn test_no_upgrader() {
    let err = utils::run_err("../fixtures/minimum_version/on", &["up", "dep", "upgradee"]);
    assert_snapshot!(err);
}