module Main where

import Test.Hspec
import Test.VMap

-- ====================================================================================

tests :: Spec
tests :: Spec
tests =
  String -> Spec -> Spec
forall a. HasCallStack => String -> SpecWith a -> SpecWith a
describe String
"vector-map" (Spec -> Spec) -> Spec -> Spec
forall a b. (a -> b) -> a -> b
$ do
    vMapTests

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