We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bafc0af commit eceadd2Copy full SHA for eceadd2
test/test_exports.jl
@@ -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