From 84347415994f53b5299820da6650dcba8230dba7 Mon Sep 17 00:00:00 2001 From: Simon Christ Date: Fri, 6 Dec 2019 14:42:35 +0100 Subject: [PATCH] add test --- test/test_pgfplotsx.jl | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/test/test_pgfplotsx.jl b/test/test_pgfplotsx.jl index ca033a52..0629470a 100644 --- a/test/test_pgfplotsx.jl +++ b/test/test_pgfplotsx.jl @@ -133,4 +133,11 @@ end annotate!([(5, y[5], Plots.text("this is \\#5", 16, :red, :center)), (10, y[10], Plots.text("this is \\#10", :right, 20, "courier"))]) scatter!(range(2, stop=8, length=6), rand(6), marker=(50, 0.2, :orange), series_annotations=["series", "annotations", "map", "to", "series", Plots.text("data", :green)]) end # testset -end # testset + @testset "Ribbon" begin + aa = rand(10) + bb = rand(10) + cc = rand(10) + conf = [aa-cc bb-cc] + p = plot(collect(1:10),fill(1,10), ribbon=conf) + end # testset + end # testset