Skip to content

Commit 7e2876b

Browse files
authored
Create diagnostics.jl
1 parent d39b4a7 commit 7e2876b

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)