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.
show(io, ::ElasticManager)
1 parent e5e35ec commit f0647d8Copy full SHA for f0647d8
test/elastic.jl
@@ -12,4 +12,14 @@
12
end
13
14
wait(rmprocs(workers()))
15
+
16
+ @testset "show(io, ::ElasticManager)" begin
17
+ str = sprint(show, em)
18
+ lines = strip.(split(strip(str), '\n'))
19
+ @test lines[1] == "ElasticManager:"
20
+ @test lines[2] == "Active workers : []"
21
+ @test lines[3] == "Number of workers to be added : 0"
22
+ @test lines[4] == "Terminated workers : [ 2]"
23
+ @test lines[5] == "Worker connect command :"
24
+ end
25
0 commit comments