[Test.hs docs added paolo.veronelli@gmail.com**20080131083449] { addfile ./docs/Test.html hunk ./docs/Test.html 1 + + +Test
 Source codeContentsIndex
Test
Synopsis
data Console = Console {
cinput :: [Maybe String]
coutput :: [String]
}
type WESC = WriterT [Err] (State Console)
testSIO :: SIO WESC
commandTest :: String -> [String] -> [String] -> [String] -> Either [Err] Bool
Documentation
data Console
Constructors
Console
cinput :: [Maybe String]
coutput :: [String]
type WESC = WriterT [Err] (State Console)
testSIO :: SIO WESC
commandTest
:: StringThe command to test +
-> [String]What will be eventually read as input +
-> [String]The file as a list of line +
-> [String]The modified file +
-> Either [Err] BoolLeft on errors, Right with the test +
Testing a console function leaving out +
Produced by Haddock version 0.8
}