Add tests for Rust

This commit is contained in:
Chris Kuehl 2018-05-21 22:57:30 -07:00
parent 2a37fcd3fe
commit b4edf2ce50
6 changed files with 74 additions and 4 deletions

View file

@ -0,0 +1,5 @@
- id: rust-hook
name: rust example hook
entry: rust-hello-world
language: rust
files: ''

View file

@ -0,0 +1,3 @@
[[package]]
name = "rust-hello-world"
version = "0.1.0"

View file

@ -0,0 +1,3 @@
[package]
name = "rust-hello-world"
version = "0.1.0"

View file

@ -0,0 +1,3 @@
fn main() {
println!("hello world");
}