aboutsummaryrefslogtreecommitdiff
path: root/haddock-library/test/Documentation/Haddock/Utf8Spec.hs
Commit message (Collapse)AuthorAgeFilesLines
* Remove `Documentation.Haddock.Utf8`Alec Theriault2019-02-031-14/+0
| | | | | | | | | | | | The circumstances under which this module appeared are completely gone. The Hyperlinker backend no longer needs this module (it uses the more efficient `Encoding` module from `ghc`). Why no deprecation? Because this module really shouldn't exist! - It isn't used in `haddock-library`/`haddock-api` anymore - It was copy pasted directly from `utf8-string` - Folks seeking a boot-lib only solution can use `ghc`'s `Encoding`
* Move parser + parser tests out to own package.Mateusz Kowalczyk2014-05-051-0/+14
We move some types out that are necessary as well and then re-export and specialise them in the core Haddock. Reason for moving out spec tests is that if we're working on the parser, we can simply work on that and we can ignore the rest of Haddock. The downside is that it's a little inconvenient if at the end of the day we want to see that everything passes.