packages feed

pqi-ffi-0.1.0.0: src/test/Spec.hs

-- | The FFI adapter's conformance test suite: a single delegate to
-- 'Pqi.Conformance.specs', which brings up a throwaway PostgreSQL
-- container, runs the full differential battery against the FFI reference,
-- and tears the container down again.
module Main (main) where

import Pqi.Conformance (specs)
import qualified Pqi.Ffi
import Prelude
import Test.Hspec

main :: IO ()
main = hspec (specs Pqi.Ffi.adapter)