Skip to content

Commit

Permalink
Add a test for default separator of types whose rank is greater than 2.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheVeryDarkness committed Oct 6, 2024
1 parent 0312577 commit 820a189
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/write/separator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,10 @@ mod tests {
check::<Vec<usize>>(&[" "]);
check::<Mat<usize>>(&["\n", " "]);
}

#[test]
fn check_separator_unimplemented() {
check::<Vec<Vec<Vec<usize>>>>(&[]);
check::<Vec<Vec<Vec<char>>>>(&[]);
}
}

0 comments on commit 820a189

Please sign in to comment.