Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.32 KB

README.md

File metadata and controls

35 lines (26 loc) · 1.32 KB

BaseTestNext

Build Status codecov.io

BaseTestNext BaseTestNext

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.

Usage

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.