File: Main.hs

package info (click to toggle)
haskell-vector 0.9.1-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 816 kB
  • sloc: haskell: 8,809; ansic: 13; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 271 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
module Main (main) where

import qualified Tests.Vector
import qualified Tests.Stream
import qualified Tests.Move

import Test.Framework (defaultMain)

main = defaultMain $ Tests.Stream.tests
                  ++ Tests.Vector.tests
                  ++ Tests.Move.tests