File: Spec.hs

package info (click to toggle)
haskell-call-stack 0.4.0-3
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 76 kB
  • sloc: haskell: 168; makefile: 5
file content (12 lines) | stat: -rw-r--r-- 183 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
module Main where

import Test.Hspec

import qualified Data.CallStackSpec

spec :: Spec
spec = do
  describe "Data.CallStack" Data.CallStackSpec.spec

main :: IO ()
main = hspec spec