PkgTemplates.jl/test/runtests.jl

13 lines
231 B
Julia
Raw Normal View History

2017-08-10 17:13:01 +00:00
using PkgTemplates
using Base.Test
# Write your own tests here.
2017-08-14 18:13:26 +00:00
mktempdir() do temp_dir
withenv("JULIA_PKGDIR" => temp_dir) do
Pkg.init()
cd(temp_dir) do
include("tests.jl")
end
end
end