* also replace axis syms * include test_axes [skip ci] * Create test_axes.jl * process showaxis
7 lines
180 B
Julia
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
|