Skip to content

Commit

Permalink
remove redundant tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dfrg committed Oct 4, 2023
1 parent afd04d6 commit ecd7b8a
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions src/bezpath.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1685,22 +1685,6 @@ mod tests {
// outputImpliedClosingLine=False.
// https://github.com/fonttools/fonttools/blob/85c80be/Tests/pens/reverseContourPen_test.py#L6-L467

#[test]
fn test_reverse_move_only_path_offset_validity() {
reverse_test_helper(
vec![PathEl::MoveTo((2.0, 2.0).into())],
vec![PathEl::MoveTo((2.0, 2.0).into())],
)
}

#[test]
fn test_reverse_move_close_path_offset_validity() {
reverse_test_helper(
vec![PathEl::MoveTo((2.0, 2.0).into()), PathEl::ClosePath],
vec![PathEl::MoveTo((2.0, 2.0).into()), PathEl::ClosePath],
)
}

#[test]
fn test_reverse_closed_last_line_not_on_move() {
reverse_test_helper(
Expand Down

0 comments on commit ecd7b8a

Please sign in to comment.