packages feed

duckling-0.2.0.0: Duckling/AmountOfMoney/EN/ZA/Corpus.hs

-- Copyright (c) 2016-present, Facebook, Inc.
-- All rights reserved.
--
-- This source code is licensed under the BSD-style license found in the
-- LICENSE file in the root directory of this source tree.

{-# LANGUAGE OverloadedStrings #-}

module Duckling.AmountOfMoney.EN.ZA.Corpus
  ( allExamples
  , negativeExamples
  ) where

import Data.String
import Data.Text (Text)
import Prelude

import Duckling.AmountOfMoney.Types
import Duckling.Testing.Types

allExamples :: [Example]
allExamples = concat
  [ examples (simple Dollar 1000)
             [ "a grand"
             , "1 grand"
             ]
  , examples (simple Dollar 10000)
             [ "10 grand"
             , "two hundred thousand nickels"
             ]
  , examples (simple Dollar 1)
             [ "four quarters"
             , "ten dimes"
             , "twenty nickels"
             ]
  , examples (simple Dollar 0.1)
             [ "dime"
             , "a dime"
             , "two nickels"
             ]
  , examples (simple Dollar 0.25)
             [ "quarter"
             , "a quarter"
             , "five nickels"
             ]
  , examples (simple Dollar 0.05)
             [ "nickel"
             , "a nickel"
             ]
  ]

negativeExamples :: [Text]
negativeExamples =
  [ "grand"
  ]