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

@ -338,7 +338,6 @@ mod tests {
#[test]
#[should_fail]
#[ignore(cfg(windows))]
fn test_empty_pop() { let mut heap = PriorityQueue::new::<int>(); heap.pop(); }
#[test]
@ -349,7 +348,6 @@ mod tests {
#[test]
#[should_fail]
#[ignore(cfg(windows))]
fn test_empty_top() { let empty = PriorityQueue::new::<int>(); empty.top(); }
#[test]
@ -360,7 +358,6 @@ mod tests {
#[test]
#[should_fail]
#[ignore(cfg(windows))]
fn test_empty_replace() { let mut heap = PriorityQueue::new(); heap.replace(5); }
#[test]