sprinkles-0.3.5.0: test/Spec.hs
import Test.Tasty
import Web.Sprinkles.PatternTest (patternTests)
import Web.Sprinkles.ApplicationTest (applicationTests)
main :: IO ()
main = defaultMain allTests
allTests =
testGroup "All Tests"
[ patternTests
, applicationTests
]