File tree Expand file tree Collapse file tree 3 files changed +18
-17
lines changed Expand file tree Collapse file tree 3 files changed +18
-17
lines changed Original file line number Diff line number Diff line change 12
12
"url" : " git://github.com/purescript-contrib/purescript-hugenums.git"
13
13
},
14
14
"dependencies" : {
15
- "purescript-arrays" : " ^3.0.0" ,
16
- "purescript-globals" : " ^2.0.0" ,
17
- "purescript-integers" : " ^2.0.0" ,
18
- "purescript-quickcheck" : " ^3.0.0" ,
19
- "purescript-strings" : " ^2.0.2"
15
+ "purescript-arrays" : " ^4.0.0" ,
16
+ "purescript-globals" : " ^3.0.0" ,
17
+ "purescript-integers" : " ^3.0.0" ,
18
+ "purescript-quickcheck" : " ^4.0.0" ,
19
+ "purescript-generics" : " ^4.0.0" ,
20
+ "purescript-strings" : " ^3.0.0"
20
21
},
21
22
"devDependencies" : {
22
- "purescript-quickcheck-laws" : " ^2 .0.0"
23
+ "purescript-quickcheck-laws" : " ^3 .0.0"
23
24
}
24
25
}
Original file line number Diff line number Diff line change 2
2
"private" : true ,
3
3
"scripts" : {
4
4
"clean" : " rimraf output && rimraf .pulp-cache" ,
5
- "build" : " pulp build --censor-lib --strict" ,
5
+ "build" : " pulp build -- -- censor-lib --strict" ,
6
6
"test" : " pulp test"
7
7
},
8
8
"devDependencies" : {
9
- "pulp" : " ^9 .0.1 " ,
10
- "purescript-psa" : " ^0.3.9 " ,
11
- "purescript" : " ^0.10 .1" ,
12
- "rimraf" : " ^2.5.4 "
9
+ "pulp" : " ^11 .0.0 " ,
10
+ "purescript-psa" : " ^0.5.0 " ,
11
+ "purescript" : " ^0.11 .1" ,
12
+ "rimraf" : " ^2.6.1 "
13
13
}
14
14
}
Original file line number Diff line number Diff line change 1
1
module Test.Main where
2
2
3
3
import Prelude
4
- import Test.QuickCheck.Laws.Data.Eq
5
- import Test.QuickCheck.Laws.Data.Ord
6
- import Test.QuickCheck.Laws.Data.Semiring
7
- import Test.QuickCheck.Laws.Data.Ring
8
- import Data.HugeNum
4
+ import Test.QuickCheck.Laws.Data.Eq ( checkEq )
5
+ import Test.QuickCheck.Laws.Data.Ord ( checkOrd )
6
+ import Test.QuickCheck.Laws.Data.Semiring ( checkSemiring )
7
+ import Test.QuickCheck.Laws.Data.Ring ( checkRing )
8
+ import Data.HugeNum ( HugeNum )
9
9
import Control.Monad.Eff (Eff )
10
10
import Control.Monad.Eff.Console (CONSOLE , log )
11
11
import Control.Monad.Eff.Exception (EXCEPTION )
@@ -19,7 +19,7 @@ main :: forall eff.
19
19
Eff
20
20
( console :: CONSOLE
21
21
, random :: RANDOM
22
- , err :: EXCEPTION
22
+ , exception :: EXCEPTION
23
23
| eff
24
24
)
25
25
Unit
You can’t perform that action at this time.
0 commit comments