Add quickcheck (#1574)

* Move uptime to being a duration value

* Adds our first quickcheck test
This commit is contained in:
Jonathan Turner
2020-04-12 07:05:59 +12:00
committed by GitHub
parent 18dd009ca8
commit dd4935fb23
4 changed files with 51 additions and 0 deletions

View File

@ -7,6 +7,12 @@ extern crate indexmap;
#[macro_use]
mod prelude;
#[cfg(test)]
extern crate quickcheck;
#[cfg(test)]
#[macro_use(quickcheck)]
extern crate quickcheck_macros;
mod cli;
mod commands;
mod context;