The Base.Test
module changed substantially internally in
Julia v0.5
. Most use cases are unaffected, but some features
such as Test.with_handler
were removed, and many new features
were added. This package provides the new Base.Test
functionality
so that packages that are supporting Julia v0.4
can use them.
For documentation, please refer to the Julia manual.
Replace using Base.Test
with:
if VERSION >= v"0.5.0-dev+7720"
using Base.Test
else
using BaseTestNext
const Test = BaseTestNext
end
See also
BaseTestDeprecated.jl,
which provides the Julia v0.4
-and-earlier Base.Test
for packages that
support Julia v0.5
and use one of the removed features.