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 1f641a4 commit 9f2cb92Copy full SHA for 9f2cb92
test/test_unstored.jl
@@ -0,0 +1,11 @@
1
+using SparseArraysBase: Unstored
2
+using FillArrays: Zeros
3
+using Test: @test, @testset
4
+
5
+@testset "Unstored" begin
6
+ a = Zeros(2, 2)
7
+ u = Unstored(a)
8
+ @test parent(u) ≡ a
9
+ @test size(u) ≡ size(a)
10
+ @test axes(u) ≡ axes(a)
11
+end
0 commit comments