Bibliography manager written in julia
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Scjrm.jl/test/runtests.jl

9 lines
314 B

using Scjrm: createlibraries
using Base.Test
testlibs = Dict("test" => Dict("path" => "/tmp/examplefolderscjrm"))
isfile("/tmp/examplefolderscjrm") && rm("/tmp/examplefolderscjrm")
createlibraries(testlibs)
@test isdir("/tmp/examplefolderscjrm")
isdir("/tmp/examplefolderscjrm") && rm("/tmp/examplefolderscjrm")