/
githubmirror
/
pandoc
Обзор
Документация
Войти
/
githubmirror
/
pandoc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/Tests/Readers/Org.hs
27 строк
788 B
Albert Krewinkel
Harmonize maintainer email addresses in module headers.
08 июл 2024, 14:27
Не верифицирован
08 июл 2024, 14:27
73ce302
Код
Авторство
О чём код?
{-# LANGUAGE OverloadedStrings #-} {- | Module : Tests.Shared Copyright : © 2014-2024 Albert Krewinkel License : GNU GPL, version 2 or above Maintainer : Albert Krewinkel <albert+pandoc@tarleb.com> Stability : alpha Portability : portable Tests of the org reader. -} module Tests.Readers.Org (tests) where import Test.Tasty (TestTree, testGroup) import qualified Tests.Readers.Org.Block as Block import qualified Tests.Readers.Org.Directive as Directive import qualified Tests.Readers.Org.Inline as Inline import qualified Tests.Readers.Org.Meta as Meta tests :: [TestTree] tests = [ testGroup "Inlines" Inline.tests , testGroup "Basic Blocks" Block.tests , testGroup "Meta Information" Meta.tests , testGroup "Directives" Directive.tests ]