stratosphere-0.1.0: tests/Main.hs
import qualified Test.Tasty
import Test.Tasty.Hspec
main :: IO ()
main = do
test <- testSpec "stratosphere" spec
Test.Tasty.defaultMain test
spec :: Spec
spec = parallel $
it "is trivially true" $
True `shouldBe` True