We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4afa2a5 commit 851439eCopy full SHA for 851439e
tests/Language/Haskell/Stylish/Step/UnicodeSyntax/Tests.hs
@@ -21,6 +21,7 @@ tests :: Test
21
tests = testGroup "Language.Haskell.Stylish.Step.UnicodeSyntax.Tests"
22
[ testCase "case 01" case01
23
, testCase "case 02" case02
24
+ , testCase "case 03" case03
25
]
26
27
@@ -46,3 +47,14 @@ case02 = assertSnippet (step True "LaNgUaGe")
46
47
, "sort ∷ Ord a ⇒ [a] → [a]"
48
, "sort _ = []"
49
50
+
51
52
+--------------------------------------------------------------------------------
53
+case03 :: Assertion
54
+case03 = assertSnippet (step False "LANGUAGE")
55
+ [ "x :: Int -> Int -> Int"
56
+ , "x = undefined"
57
+ ]
58
+ [ "x ∷ Int → Int → Int"
59
60
0 commit comments