PkgTemplates.jl/test/runtests.jl
2017-08-17 23:06:33 -05:00

16 lines
471 B
Julia

using PkgTemplates
using Base.Test
import PkgTemplates: badges, version_floor, substitute, read_license, gen_file, gen_readme,
gen_tests, gen_license, gen_require, gen_entrypoint, gen_gitignore, gen_plugin,
show_license, LICENSES, LICENSE_DIR, Plugin, GenericPlugin, CustomPlugin, Badge, format
mktempdir() do temp_dir
withenv("JULIA_PKGDIR" => temp_dir) do
Pkg.init()
cd(temp_dir) do
include("tests.jl")
end
end
end