Skip to content

Commit eceadd2

Browse files
committed
Revert "remove tested exports (included in aqua testset)"
This reverts commit e7053a8.
1 parent bafc0af commit eceadd2

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

test/test_exports.jl

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
using SparseArraysBase: SparseArraysBase
2+
using Test: @test, @testset
3+
@testset "Test exports" begin
4+
exports = [
5+
:SparseArraysBase,
6+
:SparseArrayDOK,
7+
:SparseMatrixDOK,
8+
:SparseVectorDOK,
9+
:OneElementArray,
10+
:OneElementMatrix,
11+
:OneElementVector,
12+
:eachstoredindex,
13+
:isstored,
14+
:oneelementarray,
15+
:storedlength,
16+
:storedpairs,
17+
:storedvalues,
18+
]
19+
@test issetequal(names(SparseArraysBase), exports)
20+
end

0 commit comments

Comments
 (0)