tester 0.6.0

A fork of Rust’s `test` crate that doesn’t require unstable language features.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
dist: trusty
language: rust
rust:
  - stable
  - nightly

script:
  - cargo build
  - |
    if [[ "$TRAVIS_OS_NAME" == "linux" && "$TRAVIS_RUST_VERSION" == "nightly" ]]; then
      cargo test --features capture
    fi