From 08d2157790ffde8753bdfda95230eaa23a68c5d3 Mon Sep 17 00:00:00 2001 From: t-bltg Date: Tue, 14 Sep 2021 12:33:50 +0200 Subject: [PATCH] Add test --- test/test_axes.jl | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/test/test_axes.jl b/test/test_axes.jl index 4d714c86..67ede0a4 100644 --- a/test/test_axes.jl +++ b/test/test_axes.jl @@ -63,3 +63,17 @@ end @test twpl[:top_margin] == 2Plots.cm @test twpl[:bottom_margin] == 2Plots.cm end + +@testset "aliases" begin + plot(1:2, xl = "x label") + plot(1:2, xrange = (1, 2)) + plot(1:2, xtick = :auto) + plot(1:2, xlabelfontsize = 10) + plot(1:2, xgα = .1) + plot(1:2, xgridls = :solid) + plot(1:2, xgridcolor = :red) + plot(1:2, xminorgridcolor = :red) + plot(1:2, xgrid_lw = .1) + plot(1:2, xminorgrid_lw = .1) + plot(1:2, xtickor = :out) +end