File: doctests.hs

package info (click to toggle)
haskell-linear 1.23.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 364 kB
  • sloc: haskell: 5,235; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 663 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
-----------------------------------------------------------------------------
-- |
-- Module      :  Main (doctests)
-- Copyright   :  (C) 2012-14 Edward Kmett
-- License     :  BSD-style (see the file LICENSE)
-- Maintainer  :  Edward Kmett <ekmett@gmail.com>
-- Stability   :  provisional
-- Portability :  portable
--
-- This module exists to add dependencies
-----------------------------------------------------------------------------
module Main where

main :: IO ()
main = do
    putStrLn "This test-suite exists only to add dependencies"
    putStrLn "To run doctests: "
    putStrLn "    cabal build all --enable-tests"
    putStrLn "    cabal-docspec"