File: Regression.hs

package info (click to toggle)
haskell-inspection-testing 0.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 208 kB
  • sloc: haskell: 2,053; makefile: 3
file content (17 lines) | stat: -rw-r--r-- 318 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{-# LANGUAGE TemplateHaskell #-}

-- This is a kitchen sink test file for various regressions
-- reported via GitHub

import Test.Inspection


-- https://github.com/nomeata/inspection-testing/issues/35
empty1, empty2 :: [a]
empty1 = map id []
empty2 = []

inspect $ 'empty1 === 'empty2

main :: IO ()
main = return ()