blob: acb8822046b67b460628e42619fc5c86aa0ac34a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  | 
{-# LANGUAGE OverloadedStrings #-}
module Haddock.Parser.UtilSpec (main, spec) where
import           Test.Hspec
import           Data.Either
import           Data.Attoparsec.ByteString.Char8
import           Haddock.Parser.Util
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"
 
  |