{-# LANGUAGE OverloadedStrings #-}
module Duckling.Email.IS.Corpus
( corpus
) where
import Data.String
import Prelude
import Duckling.Email.Types
import Duckling.Locale
import Duckling.Resolve
import Duckling.Testing.Types
corpus :: Corpus
corpus :: Corpus
corpus = (Context
testContext {locale :: Locale
locale = Lang -> Maybe Region -> Locale
makeLocale Lang
IS Maybe Region
forall a. Maybe a
Nothing}, Options
testOptions, [Example]
allExamples)
allExamples :: [Example]
allExamples :: [Example]
allExamples = [[Example]] -> [Example]
forall (t :: * -> *) a. Foldable t => t [a] -> [a]
concat
[ EmailData -> [Text] -> [Example]
forall a. ToJSON a => a -> [Text] -> [Example]
examples (Text -> EmailData
EmailData Text
"alice@exAmple.io")
[ Text
"alice ingi exAmple.io"
]
, EmailData -> [Text] -> [Example]
forall a. ToJSON a => a -> [Text] -> [Example]
examples (Text -> EmailData
EmailData Text
"yo+yo@blah.org")
[ Text
"yo+yo ingi blah.org"
]
, EmailData -> [Text] -> [Example]
forall a. ToJSON a => a -> [Text] -> [Example]
examples (Text -> EmailData
EmailData Text
"1234+abc@x.net")
[ Text
"1234+abc ingi x.net"
]
, EmailData -> [Text] -> [Example]
forall a. ToJSON a => a -> [Text] -> [Example]
examples (Text -> EmailData
EmailData Text
"jean-jacques@stuff.co.uk")
[ Text
"jean-jacques ingi stuff.co.uk"
]
]