mirror of
https://github.com/haskell/ghcide.git
synced 2024-12-02 08:53:07 +03:00
Add a test for removing an unused module
This commit is contained in:
parent
14b0b16aec
commit
fdefb6bc6d
@ -212,6 +212,7 @@ codeActionTests :: TestTree
|
||||
codeActionTests = testGroup "code actions"
|
||||
[ renameActionTests
|
||||
, typeWildCardActionTests
|
||||
, removeImportTests
|
||||
]
|
||||
|
||||
renameActionTests :: TestTree
|
||||
@ -360,6 +361,34 @@ typeWildCardActionTests = testGroup "type wildcard actions"
|
||||
liftIO $ expectedContentAfterAction @=? contentAfterAction
|
||||
]
|
||||
|
||||
removeImportTests :: TestTree
|
||||
removeImportTests = testGroup "remove import actions"
|
||||
[ testSession "redundant" $ do
|
||||
let contentA = T.unlines
|
||||
[ "module ModuleA where"
|
||||
]
|
||||
docA <- openDoc' "ModuleA.hs" "haskell" contentA
|
||||
let contentB = T.unlines
|
||||
[ "{-# OPTIONS_GHC -Wunused-imports #-}"
|
||||
, "module ModuleB where"
|
||||
, "import ModuleA"
|
||||
, "stuffB = 123"
|
||||
]
|
||||
docB <- openDoc' "ModuleB.hs" "haskell" contentB
|
||||
_ <- waitForDiagnostics
|
||||
[CACodeAction action@CodeAction { _title = actionTitle }]
|
||||
<- getCodeActions docB (Range (Position 2 0) (Position 2 5))
|
||||
liftIO $ "Remove import" @=? actionTitle
|
||||
executeCodeAction action
|
||||
contentAfterAction <- documentContents docB
|
||||
let expectedContentAfterAction = T.unlines
|
||||
[ "{-# OPTIONS_GHC -Wunused-imports #-}"
|
||||
, "module ModuleB where"
|
||||
, "stuffB = 123"
|
||||
]
|
||||
liftIO $ expectedContentAfterAction @=? contentAfterAction
|
||||
]
|
||||
|
||||
----------------------------------------------------------------------
|
||||
-- Utils
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user