module Main (
  main,
  tests,
)
where

import Test.Hspec

import qualified Test.Data.Measure (tests)

main :: IO ()
IO ()
main = Spec -> IO ()
hspec Spec
tests

tests :: Spec
tests :: Spec
tests =
  String -> Spec -> Spec
forall a. HasCallStack => String -> SpecWith a -> SpecWith a
describe String
"measures package" (Spec -> Spec) -> Spec -> Spec
forall a b. (a -> b) -> a -> b
$ do
    Spec
Test.Data.Measure.tests