[docs fixed
paolo.veronelli@gmail.com**20080209175120] {
adddir ./docs/src
hunk ./Hedi.cabal 13
-
+Library
+ Exposed-Modules: Engine,Editor,Operation,Eval,Parser,Helper,Offset,
+ Main,Test,Buffer,Undo
+ Build-Depends: base,mtl,parsec,regex-posix,readline,QuickCheck,
+ process,pretty
+
hunk ./Test.hs 52
+-- | valid data for testing
+data Test = Test {
+ commandT ::String, -- ^ The command to test
+ inputT ::[String], -- ^ What will be eventually read as input
+ startT ::[String], -- ^ The file as a list of line
+ endT ::[String] -- ^ The modified file
+ }
hunk ./Test.hs 60
-data Test = Test
- String -- ^ The command to test
- [String] -- ^ What will be eventually read as input
- [String] -- ^ The file as a list of line
- [String] -- ^ The modified file
-
-prima,seconda,terza = lines "prima\nseconda\nterza"
+[prima,seconda,terza] = lines "prima\nseconda\nterza"
hunk ./Test.hs 62
-test = Test "$a" [prima] [seconda] [seconda,prima] == Right True
+test = Test "$a" [prima] [seconda] [seconda,prima]
hunk ./docs/Buffer.html 22
->Hedi-0.1: Line oriented editor