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
|