Plots.jl/test/test_defaults.jl
Misha Mikhasenko 1a9532f9fc merged
2021-03-25 14:42:45 +01:00

12 lines
224 B
Julia

using Plots, Test
const PLOTS_DEFAULTS = Dict(:theme => :wong2)
Plots.__init__()
@testset "Loading theme" begin
@test plot(1:5)[1][1][:seriescolor] == RGBA(colorant"black")
end
empty!(PLOTS_DEFAULTS)
Plots.__init__()