1
1
mirror of https://github.com/anoma/juvix.git synced 2025-01-05 22:46:08 +03:00
juvix/test/Core/Transformation.hs

18 lines
469 B
Haskell
Raw Normal View History

module Core.Transformation where
import Base
import Core.Transformation.Identity qualified as Identity
import Core.Transformation.Lifting qualified as Lifting
import Core.Transformation.Pipeline qualified as Pipeline
import Core.Transformation.TopEtaExpand qualified as TopEtaExpand
allTests :: TestTree
allTests =
testGroup
"JuvixCore transformations"
[ Identity.allTests,
TopEtaExpand.allTests,
Lifting.allTests,
Pipeline.allTests
]