diff options
author | PhilFreeman <> | 2017-01-06 03:44:00 (GMT) |
---|---|---|
committer | hdiff <hdiff@hdiff.luite.com> | 2017-01-06 03:44:00 (GMT) |
commit | 393ecc8ee0178ccac2b9ae81e74708f0d17b2ca5 (patch) | |
tree | e9ef260318e657e04a175ac647cc2d0cfe24d56b /tests | |
parent | dfc92b2cabaa9529df644929982e90166ffdea4d (diff) |
version 0.10.50.10.5
Diffstat (limited to 'tests')
-rw-r--r-- | tests/TestPsci.hs | 2 | ||||
-rw-r--r-- | tests/TestUtils.hs | 20 | ||||
-rw-r--r-- | tests/support/bower.json | 1 |
3 files changed, 21 insertions, 2 deletions
diff --git a/tests/TestPsci.hs b/tests/TestPsci.hs index f758acb..65c7173 100644 --- a/tests/TestPsci.hs +++ b/tests/TestPsci.hs @@ -120,7 +120,7 @@ getPSCiState :: IO PSCiState getPSCiState = do cwd <- getCurrentDirectory let supportDir = cwd </> "tests" </> "support" </> "bower_components" - let supportFiles ext = Glob.globDir1 (Glob.compile ("purescript-*/**/*." ++ ext)) supportDir + let supportFiles ext = Glob.globDir1 (Glob.compile ("purescript-*/src/**/*." ++ ext)) supportDir pursFiles <- supportFiles "purs" modulesOrFirstError <- loadAllModules pursFiles diff --git a/tests/TestUtils.hs b/tests/TestUtils.hs index 67e3fbf..783f0c7 100644 --- a/tests/TestUtils.hs +++ b/tests/TestUtils.hs @@ -69,11 +69,15 @@ supportModules = , "Control.Monad.Eff.Class" , "Control.Monad.Eff.Console" , "Control.Monad.Eff.Unsafe" + , "Control.Monad.Rec.Class" , "Control.Monad.ST" , "Control.MonadPlus" , "Control.MonadZero" , "Control.Plus" , "Control.Semigroupoid" + , "Data.Array" + , "Data.Array.Partial" + , "Data.Array.ST" , "Data.Bifoldable" , "Data.Bifunctor" , "Data.Bifunctor.Clown" @@ -86,7 +90,10 @@ supportModules = , "Data.Boolean" , "Data.BooleanAlgebra" , "Data.Bounded" + , "Data.Char" , "Data.CommutativeRing" + , "Data.Either" + , "Data.Either.Nested" , "Data.Eq" , "Data.EuclideanRing" , "Data.Field" @@ -95,6 +102,7 @@ supportModules = , "Data.Function.Uncurried" , "Data.Functor" , "Data.Functor.Invariant" + , "Data.Generic" , "Data.Generic.Rep" , "Data.Generic.Rep.Eq" , "Data.Generic.Rep.Monoid" @@ -102,6 +110,7 @@ supportModules = , "Data.Generic.Rep.Semigroup" , "Data.Generic.Rep.Show" , "Data.HeytingAlgebra" + , "Data.Identity" , "Data.Maybe" , "Data.Maybe.First" , "Data.Maybe.Last" @@ -115,6 +124,7 @@ supportModules = , "Data.Monoid.Multiplicative" , "Data.NaturalTransformation" , "Data.Newtype" + , "Data.NonEmpty" , "Data.Ord" , "Data.Ord.Unsafe" , "Data.Ordering" @@ -122,15 +132,23 @@ supportModules = , "Data.Semigroup" , "Data.Semiring" , "Data.Show" + , "Data.String" + , "Data.String.CaseInsensitive" + , "Data.String.Regex" + , "Data.String.Regex.Flags" + , "Data.String.Regex.Unsafe" + , "Data.String.Unsafe" , "Data.Symbol" , "Data.Traversable" + , "Data.Tuple" + , "Data.Tuple.Nested" + , "Data.Unfoldable" , "Data.Unit" , "Data.Void" , "Partial" , "Partial.Unsafe" , "Prelude" , "Test.Assert" - , "Test.Main" , "Type.Data.Ordering" , "Type.Data.Symbol" , "Type.Equality" diff --git a/tests/support/bower.json b/tests/support/bower.json index c6a7173..aef7751 100644 --- a/tests/support/bower.json +++ b/tests/support/bower.json @@ -9,6 +9,7 @@ "purescript-st": "2.0.0", "purescript-partial": "1.1.2", "purescript-newtype": "1.1.0", + "purescript-generics": "3.3.0", "purescript-generics-rep": "4.0.0", "purescript-symbols": "^2.0.0", "purescript-typelevel-prelude": "https://github.com/purescript/purescript-typelevel-prelude.git#29a7123a0c29c85d4b923fcf4a7df8e45ebf9bac", |