yi-0.10.1: src/tests/Vim/TestPureEditorManipulations.hs
{-# LANGUAGE OverloadedStrings #-}
-- | Tests for pure manipulations of the editor in the Vim Keymap.
--
-- Pure manipulations of the editor refers to such things as changing layout,
-- navigating buffers, creating or deleting buffers, creating or deleting tabs.
-- In short, anything which 1) doesn't perform IO and 2) interacts with
-- something other than a single buffer.
--
-- If a test is pure and manipulates only a single buffer, it would be better
-- being part of the 'Vim.TestPureBufferManipulations' module. That module
-- provides a nicer way of writing pure single buffer manipulation tests.
--
module Vim.TestPureEditorManipulations (tests) where
import qualified Data.Text as T
import Test.Tasty (TestTree, testGroup)
import qualified Vim.EditorManipulations.BufferExCommand as BufferExCommand
import Yi (extractValue)
import Yi.Config.Default (defaultVimConfig)
import Yi.Keymap.Vim
import Yi.Keymap.Vim.Common
tests :: TestTree
tests =
testGroup "Vim pure editor manipulation tests"
[ BufferExCommand.tests defaultVimConfig
(pureEval (extractValue defVimConfig) . Ev . T.pack)
]