From 209cf66acc4641466782de64490bec5510547def Mon Sep 17 00:00:00 2001 From: Simon Christ Date: Tue, 26 May 2020 18:27:10 +0200 Subject: [PATCH] Create test_axes.jl --- test/test_axes.jl | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 test/test_axes.jl diff --git a/test/test_axes.jl b/test/test_axes.jl new file mode 100644 index 00000000..01c7ed00 --- /dev/null +++ b/test/test_axes.jl @@ -0,0 +1,5 @@ +using Plots, Test + +@testset "Showaxis" begin + @test plot(1:5, showaxis = :y)[1][:yaxis][:showaxis] == true +end