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 d39b4a7 commit 7e2876bCopy full SHA for 7e2876b
stdlib/LinearAlgebra/test/diagnostics.jl
@@ -0,0 +1,9 @@
1
+@testset "__diagnostics__()" begin
2
+ # check that `LinearAlgebra.__diagnostics__(io)` doesn't error, produces some output
3
+ buf = PipeBuffer()
4
+ LinearAlgebra.__diagnostics__(buf)
5
+ output = read(buf, String)
6
+ @test !isempty(strip(output))
7
+
8
+ NetworkOptions.__diagnostics__(stdout) # TODO: delete this line before merging the PR
9
+end
0 commit comments