Enabled unit tests in std and extra.
This commit is contained in:
parent
9e4fddeade
commit
12ecdb6381
27 changed files with 46 additions and 109 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue