summary refs log tree commit diff
path: root/src/librustc_data_structures/graph/iterate/test.rs
blob: 62e48aaec53f1bfc823a0abfe4a02d9842e655b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
use super::super::test::TestGraph;

use super::*;

#[test]
fn diamond_post_order() {
    let graph = TestGraph::new(0, &[(0, 1), (0, 2), (1, 3), (2, 3)]);

    let result = post_order_from(&graph, 0);
    assert_eq!(result, vec![3, 1, 2, 0]);
}