Skip to content

Commit 013695a

Browse files
committed
Add failing test case for #6
1 parent db6a7df commit 013695a

File tree

1 file changed

+4
-0
lines changed
  • tests/StylishHaskell/Step/Imports

1 file changed

+4
-0
lines changed

tests/StylishHaskell/Step/Imports/Tests.hs

+4
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ input = unlines
3434
, "import Data.Map (lookup, (!), insert, Map)"
3535
, ""
3636
, "import Herp.Derp.Internals hiding (foo)"
37+
, "import HURR"
3738
, ""
3839
, "herp = putStrLn \"import Hello world\""
3940
]
@@ -51,6 +52,7 @@ case01 = testCase "case 01" $ expected @=? testStep (step Global) input
5152
, "import qualified Data.Map as M"
5253
, ""
5354
, "import Herp.Derp.Internals hiding (foo)"
55+
, "import HURR"
5456
, ""
5557
, "herp = putStrLn \"import Hello world\""
5658
]
@@ -68,6 +70,7 @@ case02 = testCase "case 02" $ expected @=? testStep (step Group) input
6870
, "import qualified Data.Map as M"
6971
, ""
7072
, "import Herp.Derp.Internals hiding (foo)"
73+
, "import HURR"
7174
, ""
7275
, "herp = putStrLn \"import Hello world\""
7376
]
@@ -85,6 +88,7 @@ case03 = testCase "case 03" $ expected @=? testStep (step None) input
8588
, "import qualified Data.Map as M"
8689
, ""
8790
, "import Herp.Derp.Internals hiding (foo)"
91+
, "import HURR"
8892
, ""
8993
, "herp = putStrLn \"import Hello world\""
9094
]

0 commit comments

Comments
 (0)