stylish-haskell-0.3.2.0: tests/StylishHaskell/Step/Tabs/Tests.hs
--------------------------------------------------------------------------------
module StylishHaskell.Step.Tabs.Tests
( tests
) where
--------------------------------------------------------------------------------
import Test.Framework (Test, testGroup)
import Test.Framework.Providers.HUnit (testCase)
import Test.HUnit (Assertion, (@=?))
--------------------------------------------------------------------------------
import StylishHaskell.Step.Tabs
import StylishHaskell.Tests.Util
--------------------------------------------------------------------------------
tests :: Test
tests = testGroup "StylishHaskell.Step.Tabs.Tests"
[ testCase "case 01" case01
]
--------------------------------------------------------------------------------
case01 :: Assertion
case01 = expected @=? testStep (step 4) input
where
input = unlines
[ "module Main"
, "\t\twhere"
, "data Foo"
, "\t= Bar"
, " | Qux"
]
expected = unlines
[ "module Main"
, " where"
, "data Foo"
, " = Bar"
, " | Qux"
]