Create test_defaults.jl

This commit is contained in:
Simon Christ 2020-10-12 14:03:16 +02:00 committed by GitHub
parent eea8ac6d13
commit 86d153fb25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

8
test/test_defaults.jl Normal file
View File

@ -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