2017-03-08 21:33:55 +03:00
|
|
|
-- Copyright (c) 2016-present, Facebook, Inc.
|
|
|
|
-- All rights reserved.
|
|
|
|
--
|
|
|
|
-- This source code is licensed under the BSD-style license found in the
|
2019-05-22 20:36:43 +03:00
|
|
|
-- LICENSE file in the root directory of this source tree.
|
2017-03-08 21:33:55 +03:00
|
|
|
|
|
|
|
|
|
|
|
module Duckling.Temperature.FR.Tests
|
|
|
|
( tests ) where
|
|
|
|
|
|
|
|
import Prelude
|
|
|
|
import Data.String
|
|
|
|
import Test.Tasty
|
|
|
|
|
|
|
|
import Duckling.Dimensions.Types
|
|
|
|
import Duckling.Temperature.FR.Corpus
|
|
|
|
import Duckling.Testing.Asserts
|
|
|
|
|
|
|
|
tests :: TestTree
|
|
|
|
tests = testGroup "FR Tests"
|
2017-03-15 20:15:42 +03:00
|
|
|
[ makeCorpusTest [This Temperature] corpus
|
2017-03-08 21:33:55 +03:00
|
|
|
]
|