blob: 265a4d49cf83debb05a9d3914ec7143e7d42245e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{-# LANGUAGE OverloadedStrings #-}
module Documentation.Haddock.Parser.UtilSpec (main, spec) where
import Data.Attoparsec.ByteString.Char8
import Data.Either
import Documentation.Haddock.Parser.Util
import Test.Hspec
main :: IO ()
main = hspec spec
spec :: Spec
spec = do
describe "takeUntil" $ do
it "takes everything until a specified byte sequence" $ do
parseOnly (takeUntil "end") "someend" `shouldBe` Right "some"
it "requires the end sequence" $ do
parseOnly (takeUntil "end") "someen" `shouldSatisfy` isLeft
it "takes escaped bytes unconditionally" $ do
parseOnly (takeUntil "end") "some\\endend" `shouldBe` Right "some\\end"
|