Revision e5b833266c3d17d82c00584bd235fa773d9a4905 authored by Jeff Bezanson on 22 August 2016, 16:05:08 UTC, committed by Tony Kelman on 22 August 2016, 16:35:11 UTC
(cherry picked from commit ca5973ab56e0e212ba8b0e57266225ef28a1dcaa)
ref #18183
1 parent fe17200
Raw File
dates.jl
# This file is a part of Julia. License is MIT: http://julialang.org/license

module TestDates

using Base.Dates
using Base.Test

include("dates/types.jl")
include("dates/periods.jl")
include("dates/accessors.jl")
include("dates/query.jl")
include("dates/arithmetic.jl")
include("dates/conversions.jl")
include("dates/ranges.jl")
include("dates/adjusters.jl")
include("dates/rounding.jl")
include("dates/io.jl")

end
back to top