Blame test-suite/Test.hs

Packit 785658
import Test.Tasty
Packit 785658
Packit 785658
import qualified Math.NumberTheory.LogarithmsTests as Logarithms
Packit 785658
Packit 785658
main :: IO ()
Packit 785658
main = defaultMain tests
Packit 785658
Packit 785658
tests :: TestTree
Packit 785658
tests = testGroup "All"
Packit 785658
    [ Logarithms.testSuite
Packit 785658
    ]