packages feed

landlock-0.2.1.0: test/landlock-test-threaded.hs

module Main (main) where

import Control.Concurrent.Async (withAsyncBound)
import Test.Tasty (defaultMain, testGroup)
import ThreadedScenario (scenario)

main :: IO ()
main = do
  defaultMain $
    testGroup
      "Threaded"
      [ scenario withAsyncBound
      ]