inter-hub-haskell/Test/Main.hs

14 lines
275 B
Haskell
Raw Normal View History

module Main where
import Test.Hspec
import IHP.Prelude
import qualified Test.Architecture.LayerBoundarySpec as LayerBoundary
main :: IO ()
main = hspec do
describe "Example" do
it "should pass" do
1 + 1 `shouldBe` (2 :: Int)
LayerBoundary.spec