-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathidris-time.ipkg
48 lines (44 loc) · 1.6 KB
/
idris-time.ipkg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package idris-time
brief = "A Idris port of Haskell's time package."
sourcedir = src
version = 0.0.1
author = "Guru Devanla <[email protected]>"
homepage = 'todo'
sourceloc = 'todo'
pkgs = contrib
executable = "idris-time-main"
main = Main
modules = Data.Time.Clock.Internal.UTCTime
, Data.Time.Clock.Internal.Fixed
, Data.Time.Calendar.Days
, Data.Time.Calendar.Week
, Data.Time.Calendar.Private
, Data.Time.Calendar.OrdinalDate
, Data.Time.Calendar.MonthDay
, Data.Time.Calendar.Gregorian
, Data.Time.Clock.Internal.SystemTime
, Data.Time.Clock.System
, Data.DateTime
, Data.Time.LocalTime.Internal.TimeOfDay
, Test.TestUtil
, Test.TestCTimespec
, Test.TestFixed
, Test.TestGregorian
, Test.TestOrdinalDate
tests = Test.TestCTimespec.testClockGetTime
, Test.TestFixed.testAdd
, Test.TestFixed.testSub
, Test.TestFixed.testNegate
, Test.TestFixed.testMultFixed
, Test.TestFixed.testFracDiv
, Test.TestFixed.testRecip
, Test.TestGregorian.test_toGregorian
, Test.TestGregorian.test_fromGregorian
, Test.TestGregorian.test_gregorianMonthLength
, Test.TestGregorian.test_gregorianMonthLengthNonLeap
, Test.TestGregorian.test_addGregorianMonths
, Test.TestGregorian.test_rolloverMonths
, Test.TestOrdinalDate.test_toOrdinalDate
, Test.TestOrdinalDate.test_fromOrdinalDate
, Test.TestOrdinalDate.test_fromOrdinalDateWithJust
, Test.TestOrdinalDate.test_fromOrdinalDateWithNothing