xrefcheck/tests/Main.hs
Kirill Andreev 2f9a9d8599
Remove mixins
Problem:  Stack cannot build projects with mixins, and they only
          used to splice universum instead of base.

Solution: Use `NoImplicitPreduce` and import `Universum`
          everywhere explicitly.
2021-11-01 15:24:25 +04:00

13 lines
203 B
Haskell

{- SPDX-FileCopyrightText: 2019 Serokell <https://serokell.io>
-
- SPDX-License-Identifier: MPL-2.0
-}
import Universum
import Spec (spec)
import Test.Hspec (hspec)
main :: IO ()
main = hspec spec