Skip to content

Commit

Permalink
remove the test for Integer.i_multiply on Complex. That test had been…
Browse files Browse the repository at this point in the history
… TODO'd, and I mistakenly untodo'd it. It has never passed as written (which is probably wrong) and the MULTI case that it was designed to test has been removed
  • Loading branch information
Whiteknight committed Jan 6, 2011
1 parent 58adb70 commit e2af51a
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions t/pmc/integer.t
Expand Up @@ -24,7 +24,7 @@ Tests the Integer PMC.

get_max_min()

plan(143)
plan(142)
test_init()
test_basic_math()
test_truthiness_and_definedness()
Expand Down Expand Up @@ -593,15 +593,6 @@ fin:
mul $P0, $P1
is($P0, 24, 'i_multiply Integer PMC by Integer PMC')

$P0 = new ['Integer']
$P1 = new ['Complex']
$P2 = new ['Complex']
$P0 = 2
$P1 = "2+4i"
$P2 = "4+8i"
mul $P0, $P1
is($P0, $P2, 'i_multiply Integer PMC by Complex PMC')

$P0 = new ['Integer']
$P1 = new ['Float']
$P0 = 2
Expand Down

0 comments on commit e2af51a

Please sign in to comment.