alloc::boxed: enable test

Previously test was disabled due to `#[cfg(test)]` before `mod boxed`.
This commit is contained in:
Stepan Koltsov
2015-01-20 23:57:56 +03:00
parent a0f86de497
commit ace2f09d3f
3 changed files with 77 additions and 53 deletions

View File

@@ -91,6 +91,8 @@ pub mod heap;
#[cfg(not(test))]
pub mod boxed;
#[cfg(test)]
mod boxed_test;
pub mod arc;
pub mod rc;