Skip to content

Commit

Permalink
More tests
Browse files Browse the repository at this point in the history
  • Loading branch information
joschmitt committed Sep 5, 2024
1 parent 00007bb commit e2efee3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/Rings/mpoly.jl
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,12 @@ end
d = @inferred absolute_primary_decomposition(I)
@test length(d) == 5

d = @inferred absolute_primary_decomposition(ideal(R()))
@test length(d) == 1

d = @inferred absolute_primary_decomposition(ideal(R(1)))
@test isempty(d)

# Issue 4039
R, (x, y) = polynomial_ring(QQ, ["x", "y"])
I = ideal(R, [x + 1, y + 1, y])
Expand Down

0 comments on commit e2efee3

Please sign in to comment.