[doc][test] add 'args' to usage and add integration test

This commit is contained in:
Stefan Ruzitschka
2019-01-26 00:42:52 +01:00
parent 05fff76875
commit ae6169c7bc
6 changed files with 31 additions and 0 deletions

4
integration-test/Cargo.lock generated Normal file
View File

@@ -0,0 +1,4 @@
[[package]]
name = "rust-action"
version = "0.1.0"

View File

@@ -0,0 +1,7 @@
[package]
name = "rust-action"
version = "0.1.0"
authors = ["Stefan Ruzitschka <icepuma@godda.mn>"]
edition = "2018"
[dependencies]

View File

@@ -0,0 +1,7 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}