-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMain.purs
More file actions
41 lines (39 loc) · 972 Bytes
/
Main.purs
File metadata and controls
41 lines (39 loc) · 972 Bytes
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
module Test.Main where
import Prelude
import TestCases.Datatypes (testDatatypes)
import TestCases.PatternMaching (testPM)
import TestCases.Records (testRecords)
import Effect (Effect)
import Effect.Class.Console (log)
import Test.Unfoldable (testUnfoldable)
import Test.ST (testST)
import Test.UnsafeCoerce (testUnsafeCoerce)
import Test.Arrays (testArrays)
import Data.Array as A
import Data.Maybe (Maybe(..))
import Test.OrderedCollections (testOrderedCollections)
import Test.Int (testInt)
import Test.Record (testRecord)
import Test.Globals (testGlobals)
import Global as G
import Global.Unsafe as GU
import Record as R
import Test.PyUtil
import Test.String (testStringAll)
import Test.TestQuickCheck (testQuickCheck)
main :: Effect Unit
main = do
testDatatypes
testPM
testRecords
testRecord
testUnfoldable
testST
testUnsafeCoerce
testArrays
testInt
testGlobals
testStringAll
testQuickCheck
testOrderedCollections
log "CI tests passing!"