quickcheck 0.3.2

Automatic property based testing with shrinking.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
language: rust
rust:
  - stable
  - beta
  - nightly
script:
  - cargo build --verbose
  - cargo test --verbose
  - cargo doc
  - if [ "$TEST_SUITE" = "suite_nightly" ]; then
      cargo build --verbose --manifest-path quickcheck_macros/Cargo.toml;
      cargo test --verbose --manifest-path quickcheck_macros/Cargo.toml;
    fi