https://gitlab.inria.fr/abrenon/soprano
Tip revision: 3fc6efcf5444dee0c690d4d57aab06a50593ad8a authored by Alice Brenon on 25 November 2025, 13:33:00 UTC
Switch license to GPLv3 (https://www.gnu.org/licenses/gpl.html)
Switch license to GPLv3 (https://www.gnu.org/licenses/gpl.html)
Tip revision: 3fc6efc
Tests.hs
module Tests (
tests
) where
import Articles (testArticles)
import Cleaning (testCleaning)
import Distribution.TestSuite (Test)
import Ordering (testLayouts)
import Peritext (testPeritexts)
import RectElement (testAllRetrieveFloating)
import XML (testXPath)
tests :: IO [Test]
tests = return [
testXPath
, testCleaning
, testAllRetrieveFloating
, testLayouts
, testPeritexts
-- disabled for now, headword detection still needs to be improved
--, testArticles
]
