xrefcheck/links-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

22 lines
509 B
Haskell

-- SPDX-FileCopyrightText: 2021 Serokell <https://serokell.io>
--
-- SPDX-License-Identifier: MPL-2.0
module Main
( main
) where
import Universum
import Test.Tasty (defaultIngredients, defaultMainWithIngredients, includingOptions)
import Test.Tasty.Ingredients (Ingredient)
import Test.Xrefcheck.FtpLinks (ftpOptions)
import Tree (tests)
main :: IO ()
main = tests >>= defaultMainWithIngredients ingredients
ingredients :: [Ingredient]
ingredients = includingOptions ftpOptions : defaultIngredients