summaryrefslogtreecommitdiffhomepage
path: root/tests/Language/Haskell/Stylish/Step/Imports/Tests.hs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Language/Haskell/Stylish/Step/Imports/Tests.hs')
-rw-r--r--tests/Language/Haskell/Stylish/Step/Imports/Tests.hs15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/Language/Haskell/Stylish/Step/Imports/Tests.hs b/tests/Language/Haskell/Stylish/Step/Imports/Tests.hs
index bc6772c..67c7c5a 100644
--- a/tests/Language/Haskell/Stylish/Step/Imports/Tests.hs
+++ b/tests/Language/Haskell/Stylish/Step/Imports/Tests.hs
@@ -52,6 +52,7 @@ tests = testGroup "Language.Haskell.Stylish.Step.Imports.Tests"
, testCase "case 23" case23
, testCase "case 24" case24
, testCase "case 25" case25
+ , testCase "case 26 (issue 185)" case26
]
@@ -663,3 +664,17 @@ case25 = expected
, ""
, "import Data.Foo (Foo (Foo,Bar), Goo(Goo))"
]
+
+
+--------------------------------------------------------------------------------
+case26 :: Assertion
+case26 = expected
+ @=? testStep (step 80 options ) input'
+ where
+ options = defaultOptions { listAlign = NewLine, longListAlign = Multiline }
+ input' = unlines
+ [ "import Data.List"
+ ]
+ expected = unlines
+ [ "import Data.List"
+ ]