Plots.jl/test/test_axes.jl
2020-05-26 20:23:15 +02:00

7 lines
180 B
Julia

using Plots, Test
@testset "Showaxis" begin
@test plot(1:5, showaxis = :y)[1][:yaxis][:showaxis] == true
@test plot(1:5, showaxis = :y)[1][:xaxis][:showaxis] == false
end