File: Tests.hs

package info (click to toggle)
stylish-haskell 0.14.5.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 916 kB
  • sloc: haskell: 7,954; makefile: 67; sh: 15
file content (60 lines) | stat: -rw-r--r-- 1,869 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
--------------------------------------------------------------------------------
{-# LANGUAGE OverloadedLists #-}
module Language.Haskell.Stylish.Step.UnicodeSyntax.Tests
    ( tests
    ) where


--------------------------------------------------------------------------------
import           Test.Framework                              (Test, testGroup)
import           Test.Framework.Providers.HUnit              (testCase)
import           Test.HUnit                                  (Assertion)


--------------------------------------------------------------------------------
import           Language.Haskell.Stylish.Step.UnicodeSyntax
import           Language.Haskell.Stylish.Tests.Util


--------------------------------------------------------------------------------
tests :: Test
tests = testGroup "Language.Haskell.Stylish.Step.UnicodeSyntax.Tests"
    [ testCase "case 01" case01
    , testCase "case 02" case02
    , testCase "case 03" case03
    ]


--------------------------------------------------------------------------------
case01 :: Assertion
case01 = assertSnippet (step True "LANGUAGE")
    [ "sort :: Ord a => [a] -> [a]"
    , "sort _ = []"
    ]
    [ "{-# LANGUAGE UnicodeSyntax #-}"
    , "sort ∷ Ord a ⇒ [a] → [a]"
    , "sort _ = []"
    ]


--------------------------------------------------------------------------------
case02 :: Assertion
case02 = assertSnippet (step True "LaNgUaGe")
    [ "sort :: Ord a => [a] -> [a]"
    , "sort _ = []"
    ]
    [ "{-# LaNgUaGe UnicodeSyntax #-}"
    , "sort ∷ Ord a ⇒ [a] → [a]"
    , "sort _ = []"
    ]


--------------------------------------------------------------------------------
case03 :: Assertion
case03 = assertSnippet (step False "LANGUAGE")
    [ "x :: Int -> Int -> Int"
    , "x = undefined"
    ]
    [ "x ∷ Int → Int → Int"
    , "x = undefined"
    ]