Weave.jl/test/chunk_opts_gadfly.jl

19 lines
571 B
Julia
Raw Normal View History

2016-11-03 13:13:50 +01:00
using Weave
using Test
cleanup = true
#Test hold and term options
weave("documents/test_hold.mdw", doctype="pandoc", plotlib="Gadfly")
result = read("documents/test_hold.md", String)
ref = read("documents/test_hold_ref.md", String)
@test result == ref
cleanup && rm("documents/test_hold.md")
2016-04-20 10:30:22 +02:00
#Test setting and restoring chunk options
Weave.weave("documents/default_opts.noweb", doctype = "tex")
result = read("documents/default_opts.tex", String)
ref = read("documents/default_opts_ref.tex", String)
2016-04-20 10:30:22 +02:00
@test result == ref
cleanup && rm("documents/default_opts.tex")