Skip to content

JuliaCI/BaseTestNext.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Provides the Base.Test functionality added in Julia v0.5

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages