mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-27 08:22:31 +00:00
20 lines
259 B
Rust
20 lines
259 B
Rust
|
#[test]
|
||
|
fn test_create_map() {
|
||
|
let _m = indexmap::indexmap! {
|
||
|
1 => 2,
|
||
|
7 => 1,
|
||
|
2 => 2,
|
||
|
3 => 3,
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn test_create_set() {
|
||
|
let _s = indexmap::indexset! {
|
||
|
1,
|
||
|
7,
|
||
|
2,
|
||
|
3,
|
||
|
};
|
||
|
}
|