Testing Guidelines
test/ Ast/ Parser/ ExprSpec.hs LiteralSpec.hs ...{-# OPTIONS_GHC -F -pgmF hspec-discover #-}module Ast.Parser.ExprSpec where import Test.Hspec import Ast.Parser.Expr spec :: Spec spec = do describe "parseExpr" $ do it "parses a simple addition" $ do -- Test code here
Last updated