quickcheck 0.5.0

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