1
Fork 0

Enabled unit tests in std and extra.

This commit is contained in:
Vadim Chugunov 2013-08-19 15:40:37 -07:00
parent 9e4fddeade
commit 12ecdb6381
27 changed files with 46 additions and 109 deletions

View file

@ -93,7 +93,6 @@ fn test_basic() {
#[test]
#[should_fail]
#[ignore(cfg(windows))]
fn test_take_empty() {
let value_cell = Cell::new_empty::<~int>();
value_cell.take();
@ -101,7 +100,6 @@ fn test_take_empty() {
#[test]
#[should_fail]
#[ignore(cfg(windows))]
fn test_put_back_non_empty() {
let value_cell = Cell::new(~10);
value_cell.put_back(~20);