Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions stdlib/Artifacts/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -157,3 +157,10 @@ end
end
end
end

@testset "`Artifacts.artifact_names` and friends" begin
n = length(Artifacts.artifact_names)
@test length(Base.project_names) == n
@test length(Base.manifest_names) == n
@test length(Base.preferences_names) == n
end
7 changes: 7 additions & 0 deletions test/loading.jl
Original file line number Diff line number Diff line change
Expand Up @@ -718,3 +718,10 @@ import .Foo.Libdl; import Libdl
end
end
end

@testset "`Base.project_names` and friends" begin
# Some functions in Pkg assumes that these tuples have the same length
n = length(Base.project_names)
@test length(Base.manifest_names) == n
@test length(Base.preferences_names) == n
end