mirror of
https://github.com/facebook/duckling.git
synced 2024-11-28 16:54:59 +03:00
40 lines
964 B
Haskell
40 lines
964 B
Haskell
|
-- 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. An additional grant
|
||
|
-- of patent rights can be found in the PATENTS file in the same directory.
|
||
|
|
||
|
|
||
|
{-# LANGUAGE OverloadedStrings #-}
|
||
|
|
||
|
module Duckling.Temperature.KM.Corpus
|
||
|
( corpus
|
||
|
) where
|
||
|
|
||
|
import Data.String
|
||
|
import Prelude
|
||
|
|
||
|
import Duckling.Locale
|
||
|
import Duckling.Resolve
|
||
|
import Duckling.Temperature.Types
|
||
|
import Duckling.Testing.Types
|
||
|
|
||
|
context :: Context
|
||
|
context = testContext{locale = makeLocale KM Nothing}
|
||
|
|
||
|
corpus :: Corpus
|
||
|
corpus = (context, testOptions, allExamples)
|
||
|
|
||
|
allExamples :: [Example]
|
||
|
allExamples = concat
|
||
|
[ examples (simple Celsius 30)
|
||
|
[ "30អង្សា"
|
||
|
, "30អង្សាសេ"
|
||
|
]
|
||
|
, examples (simple Degree 21)
|
||
|
[ "21ដឺក្រេ"
|
||
|
, "21°"
|
||
|
]
|
||
|
]
|