aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorValery V. Vorotyntsev <valery.vv@gmail.com>2007-10-19 22:58:30 +0200
committerValery V. Vorotyntsev <valery.vv@gmail.com>2007-10-19 22:58:30 +0200
commitd01f260f24ac0477a769dd7df7bf3afa25c090b9 (patch)
treef77459d17e37baebf7516fd33d94f06491a7094d /tests
parenta5b811e4ed0361558eaedd8e52f51aeceabb0c26 (diff)
downloadXMonadContrib-d01f260f24ac0477a769dd7df7bf3afa25c090b9.tar.gz
XMonadContrib-d01f260f24ac0477a769dd7df7bf3afa25c090b9.tar.xz
XMonadContrib-d01f260f24ac0477a769dd7df7bf3afa25c090b9.zip
test_XPrompt.hs: there is no ShellPrompt.rmPath
darcs-hash:20071019205830-ae588-536b101a46c01318fa5120e055c07327f3b3937d.gz
Diffstat (limited to 'tests')
-rw-r--r--tests/test_XPrompt.hs6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/test_XPrompt.hs b/tests/test_XPrompt.hs
index fa5207d..11283d7 100644
--- a/tests/test_XPrompt.hs
+++ b/tests/test_XPrompt.hs
@@ -26,10 +26,6 @@ deepestCheck p = check (defaultConfig { configMaxTest = 100000}) p
prop_split (str :: [Char]) =
forAll (elements str) $ \e -> S.split e str == S.split e str
--- check for exceptions
-prop_rmPath (str :: [[Char]]) =
- S.rmPath str == S.rmPath str
-
-- check if the first element of the new list is indeed the first part
-- of the string.
prop_spliInSubListsAt (x :: Int) (str :: [Char]) =
@@ -68,8 +64,6 @@ prop_newCommandIndex =
main = do
putStrLn "Testing ShellPrompt.split"
deepCheck prop_split
- putStrLn "Testing ShellPrompt.rmPath"
- doubleCheck prop_rmPath
putStrLn "Testing spliInSubListsAt"
deepCheck prop_spliInSubListsAt
putStrLn "Testing newIndex + newCommand"