Skip to content

Commit

Permalink
Add test
Browse files Browse the repository at this point in the history
  • Loading branch information
lgoettgens committed Sep 26, 2024
1 parent 23b3a5a commit 4d9f040
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/generic/UnivPoly-test.jl
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,12 @@ end
@test vars(2x2^2 + 3x2 + 1) == [x]

@test characteristic(S) == 0

xs, ys = gens(S, :x => (1:4), :y =>(1:2, 1:3))
@test xs isa Vector{elem_type(S)}
@test length(xs) == 4
@test ys isa Matrix{elem_type(S)}
@test size(ys) == (2, 3)
end
end
end
Expand Down

0 comments on commit 4d9f040

Please sign in to comment.