Skip to content

Commit

Permalink
test: somewhat more permissive test_throws message (#466)
Browse files Browse the repository at this point in the history
  • Loading branch information
vtjnash authored Oct 31, 2023
1 parent 911cf6a commit 7897f1f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test/sparsematrix_ops.jl
Original file line number Diff line number Diff line change
Expand Up @@ -238,12 +238,13 @@ dA = Array(sA)
end

@testset "empty cases" begin
errchecker(str) = occursin("reducing over an empty collection is not allowed", str) ||
errchecker(str) = occursin(": reducing over an empty collection is not allowed", str) ||
occursin(": reducing with ", str) ||
occursin("collection slices must be non-empty", str)
@test sum(sparse(Int[])) === 0
@test prod(sparse(Int[])) === 1
@test_throws "reducing over an empty" minimum(sparse(Int[]))
@test_throws "reducing over an empty" maximum(sparse(Int[]))
@test_throws errchecker minimum(sparse(Int[]))
@test_throws errchecker maximum(sparse(Int[]))

for f in (sum, prod)
@test isequal(f(spzeros(0, 1), dims=1), f(Matrix{Int}(I, 0, 1), dims=1))
Expand Down

0 comments on commit 7897f1f

Please sign in to comment.