File: Regressions.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 (34 lines) | stat: -rw-r--r-- 1,069 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
{-# LANGUAGE OverloadedLists   #-}
{-# LANGUAGE OverloadedStrings #-}
module Language.Haskell.Stylish.Regressions
  ( tests
  ) where

import           Language.Haskell.Stylish.Step.Imports
import           Language.Haskell.Stylish.Tests.Util (assertSnippet)
import           Test.Framework                      (Test, testGroup)
import           Test.Framework.Providers.HUnit      (testCase)
import           Test.HUnit                          (Assertion)


tests :: Test
tests = testGroup "Language.Haskell.Stylish.Regressions"
    [ testCase "case 00 (issue #198)" case00
    ]

-- | Error parsing '(,) #198
--
-- See https://github.com/haskell/stylish-haskell/issues/198
case00 :: Assertion
case00 = assertSnippet (step (Just 80) $ importStepConfig Global) input input
  where
    input =
      [ "{-# LANGUAGE TemplateHaskell #-}"
      , ""
      , "import           Language.Haskell.TH.Syntax"
      , ""
      , "main = print $ showName '(,)"
      ]

importStepConfig :: ImportAlign -> Options
importStepConfig align = defaultOptions { importAlign = align }