quickcheck 0.2.27

Automatic property based testing with shrinking.
Documentation
language: rust
matrix:
  include:
    - rust: "nightly"
      env: TEST_SUITE=suite_nightly
    - rust: "beta"
      env: TEST_SUITE=suite_beta
script:
  - cargo build --verbose
  - cargo test --verbose
  - 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