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 35836d1 commit 657c315Copy full SHA for 657c315
test/resolve.jl
@@ -508,4 +508,17 @@ end
508
end
509
510
511
+@testset "Stdlib resolve smoketest" begin
512
+ # All stdlibs should be installable and resolvable
513
+ temp_pkg_dir() do dir
514
+ Pkg.activate(temp=true)
515
+ Pkg.add(map(first, values(Pkg.Types.load_stdlib()))) # add all stdlibs
516
+ iob = IOBuffer()
517
+ Pkg.resolve(io = iob)
518
+ str = String(take!(io))
519
+ @test occursin(r"No Changes to .*Project.toml", str)
520
+ @test occursin(r"No Changes to .*Manifest.toml", str)
521
+ end
522
+end
523
+
524
end # module
0 commit comments