|
188 | 188 | str = String(take!(buf))
|
189 | 189 | @test occursin("\n```julia\n", str)
|
190 | 190 | if Sys.iswindows()
|
191 |
| - @test occursin("h_1(x::Union{Array{T,2}, Array{T,1}} where T) -> Union{Array{T,2}, Array{T,1}} where T", str) |
| 191 | + @test occursin("h_1(x::Union{Array{T,4}, Array{T,3}} where T) -> Union{Array{T,4}, Array{T,3}} where T", str) |
192 | 192 | else
|
193 |
| - @test occursin("h_1(x::Union{Array{T,1}, Array{T,2}} where T) -> Union{Array{T,1}, Array{T,2}} where T", str) |
| 193 | + @test occursin("h_1(x::Union{Array{T,3}, Array{T,4}} where T) -> Union{Array{T,3}, Array{T,4}} where T", str) |
194 | 194 | end
|
195 | 195 | @test occursin("\n```\n", str)
|
196 | 196 |
|
@@ -316,14 +316,14 @@ end
|
316 | 316 |
|
317 | 317 | doc.data = Dict(
|
318 | 318 | :binding => Docs.Binding(M, :k_7),
|
319 |
| - :typesig => Union{Tuple{Union{T, Nothing}}, Tuple{Union{T, Nothing}, T}, Tuple{T}} where T <: Number, |
| 319 | + :typesig => Union{Tuple{Union{T, Nothing}}, Tuple{Union{T, Nothing}, T}, Tuple{T}} where T <: Integer, |
320 | 320 | :module => M,
|
321 | 321 | )
|
322 | 322 | DSE.format(DSE.TYPEDSIGNATURES, buf, doc)
|
323 | 323 | str = String(take!(buf))
|
324 | 324 | @test occursin("\n```julia\n", str)
|
325 |
| - @test occursin("\nk_7(x::Union{Nothing, T<:Number}) -> Union{Nothing, Number}\n", str) |
326 |
| - @test occursin("\nk_7(x::Union{Nothing, T<:Number}, y::T<:Number) -> Union{Nothing, T<:Number}\n", str) |
| 325 | + @test occursin("\nk_7(x::Union{Nothing, T<:Integer}) -> Union{Nothing, Integer}\n", str) |
| 326 | + @test occursin("\nk_7(x::Union{Nothing, T<:Integer}, y::T<:Integer) -> Union{Nothing, T<:Integer}\n", str) |
327 | 327 | @test occursin("\n```\n", str)
|
328 | 328 |
|
329 | 329 | doc.data = Dict(
|
|
553 | 553 | @test length(DSE.getmethods(M.f, Tuple{})) == 0
|
554 | 554 | @test length(DSE.getmethods(M.f, Union{Tuple{}, Tuple{Any}})) == 1
|
555 | 555 | @test length(DSE.getmethods(M.h_3, Tuple{M.A{Int}})) == 1
|
556 |
| - @test length(DSE.getmethods(M.h_3, Tuple{Vector{Int}})) == 1 |
557 |
| - @test length(DSE.getmethods(M.h_3, Tuple{Array{Int, 3}})) == 0 |
| 556 | + @test length(DSE.getmethods(M.h_3, Tuple{Array{Int, 3}})) == 1 |
| 557 | + @test length(DSE.getmethods(M.h_3, Tuple{Array{Int, 1}})) == 0 |
558 | 558 | end
|
559 | 559 | @testset "methodgroups" begin
|
560 | 560 | @test length(DSE.methodgroups(M.f, Tuple{Any}, M)) == 1
|
|
0 commit comments