diff --git a/test/test_defaults.jl b/test/test_defaults.jl new file mode 100644 index 00000000..8a45057a --- /dev/null +++ b/test/test_defaults.jl @@ -0,0 +1,8 @@ +using Plots, Test + +const PLOTS_DEFAULTS = Dict(:theme => :wong2) + +@testset "Loading theme" begin + Plots.__init__() + plot(1:5)[1][1][:series_color] == colorant"black" +end