test(beta): enable testing on beta rustc

This commit is contained in:
Sean McArthur
2015-04-15 11:59:23 -07:00
parent f223312e3e
commit 55b37f0148
6 changed files with 17 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
#![doc(html_root_url = "https://hyperium.github.io/hyper/hyper/index.html")]
#![deny(missing_docs)]
#![cfg_attr(test, deny(warnings))]
#![cfg_attr(test, feature(test))]
#![cfg_attr(all(test, feature = "nightly"), feature(test))]
//! # Hyper
//!
@@ -140,7 +140,7 @@ extern crate typeable;
#[macro_use]
extern crate log;
#[cfg(test)]
#[cfg(all(test, feature = "nightly"))]
extern crate test;