diff --git a/test/runtests.jl b/test/runtests.jl index 696e147e..99c13cad 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -179,4 +179,9 @@ end @test isequal(collect(zip(Plots.unzip(z)...)), z) @test isequal(collect(zip(Plots.unzip(GeometryTypes.Point.(z))...)), z) end + op1 = process_clims((1.0, 2.0)) + op2 = process_clims((1, 2.0)) + data = randn(100, 100) + @test op1(data) == op2(data) + @test process_clims(nothing) == process_clims(missing) == process_clims(:auto) end