Skip to content

Commit

Permalink
remove duplicate test
Browse files Browse the repository at this point in the history
  • Loading branch information
Whiteknight committed Aug 20, 2010
1 parent 46a7a96 commit c843c5e
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions t/pmc/nummatrix2d.t
Original file line number Diff line number Diff line change
Expand Up @@ -147,20 +147,4 @@ method test_VTABLE_i_multiply_NUMMATRIX2D() {
}
}
# Block Get/Set method tests
method test_METHOD_set_block() {
my $m := self.factory.matrix2x2(1.0, 2.0,
3.0, 4.0);
my $n := self.factory.matrix3x3(0.0, 0.0, 0.0,
0.0, 0.0, 0.0,
0.0, 0.0, 0.0);
my $o := self.factory.matrix3x3(0.0, 1.0, 2.0,
0.0, 3.0, 4.0,
0.0, 0.0, 0.0);
$n.set_block(0, 1, $m);
assert_equal($n, $o, "cannot set block");
# TODO: More tests for this method and coordinate combinations, including
# boundary-checking issues
}

0 comments on commit c843c5e

Please sign in to comment.