14 lines
265 B
Haskell
14 lines
265 B
Haskell
|
|
module Main where
|
||
|
|
|
||
|
|
import Test.Hspec
|
||
|
|
import IHP.Prelude
|
||
|
|
import qualified Test.ProbeControllerSpec as ProbeController
|
||
|
|
|
||
|
|
main :: IO ()
|
||
|
|
main = hspec do
|
||
|
|
describe "Sanity" do
|
||
|
|
it "1 + 1 = 2" do
|
||
|
|
1 + 1 `shouldBe` (2 :: Int)
|
||
|
|
|
||
|
|
ProbeController.spec
|