knope 0.22.1

A command line tool for automating common development tasks
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::helpers::*;

#[test]
fn https_remote() {
    TestCase::new(file!())
        .with_remote("https://github.com/knope-dev/knope.git")
        .run("--generate");
}

#[test]
fn ssh_remote() {
    TestCase::new(file!())
        .with_remote("git@github.com:knope-dev/knope.git")
        .run("--generate");
}