Weave.jl/test/plotsjl_test.jl

17 lines
517 B
Julia

using Weave
using Base.Test
import Plots
function pljtest(source, resfile, doctype)
weave("documents/$source", out_path = "documents/plotsjl/$resfile", doctype=doctype)
result = readstring("documents/plotsjl/$resfile")
ref = readstring("documents/plotsjl/$resfile.ref")
@test result == ref
rm("documents/plotsjl/$resfile")
end
pljtest("plotsjl_test.jmd", "plotsjl_test.md", "pandoc")
pljtest("plotsjl_test.jmd", "plotsjl_test.tex", "tex")
pljtest("plotsjl_test_gr.jmd", "plotsjl_test_gr.md", "pandoc")