Weave.jl/test/sandbox_test.jl

43 lines
904 B
Julia
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using Weave
using Test
function weavestring(source; doctype = "pandoc", informat="markdown", mod=Main)
p1 = Weave.parse_doc(source, informat)
doc = Weave.WeaveDoc("dummy1.jmd", p1, Dict())
return Weave.run(doc, doctype=doctype, mod=mod)
end
smod = """
```julia
module TestMod
x = 3
function printx()
print("x")
end
export printx
end
```
```julia
using .TestMod
printx()
```
"""
wdoc = weavestring(smod)
@test wdoc.chunks[1].output == "Main.TestMod\n"
@test wdoc.chunks[2].output == "x"
sdoc = weavestring(smod, mod=:sandbox)
@test occursin(r"Main.WeaveSandBox[0-9]*.TestMod\n", sdoc.chunks[1].output)
@test sdoc.chunks[2].output == "x"
include_weave(Main, joinpath(@__DIR__, "documents/include_test.jmd"))
@test Test1.x == 10
@test Test1.y == 20
@test Test1.testing("weave") == "weave"
@test Test2.d["a"] == "α"
@test split(Test2.doc, r"\r\n|\n")[1] == "---"