use #[ignore] for todo'ed tests
Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
parent
23e3f6526f
commit
d1b82ea225
1 changed files with 2 additions and 2 deletions
|
@ -325,8 +325,8 @@ fn ser_array() {
|
||||||
assert_eq!(&s, &v, "vec serialization does not match");
|
assert_eq!(&s, &v, "vec serialization does not match");
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(todo)]
|
|
||||||
#[test]
|
#[test]
|
||||||
|
#[ignore]
|
||||||
fn de_array() {
|
fn de_array() {
|
||||||
let a: u64 = 123_456;
|
let a: u64 = 123_456;
|
||||||
let b: u64 = 987_654;
|
let b: u64 = 987_654;
|
||||||
|
@ -357,8 +357,8 @@ fn de_array() {
|
||||||
assert_eq!(vec[1], b, "deserialized vec [1] does not match");
|
assert_eq!(vec[1], b, "deserialized vec [1] does not match");
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(todo)]
|
|
||||||
#[test]
|
#[test]
|
||||||
|
#[ignore]
|
||||||
fn de_complex() {
|
fn de_complex() {
|
||||||
type Key<'a> = (&'a UserId, ArrayVec<u64, 2>, &'a RoomId);
|
type Key<'a> = (&'a UserId, ArrayVec<u64, 2>, &'a RoomId);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue