diff options
author | Bartek Iwańczuk <biwanczuk@gmail.com> | 2019-09-10 17:09:54 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-09-10 11:09:54 -0400 |
commit | acee1944b9419e101f515a501b11653af8229258 (patch) | |
tree | 25d31a76d25f465a8c97c637f3edce30c166ebb8 /cli/main.rs | |
parent | 0b757f37371474da63db341b831d83539df28df6 (diff) |
feat: Make integration tests rust unit tests (#2884)
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/main.rs b/cli/main.rs index 42369e638..30acb3ebd 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -18,6 +18,9 @@ extern crate serde; extern crate serde_derive; extern crate url; +#[cfg(test)] +mod integration_tests; + mod ansi; mod assets; pub mod compilers; |