2017-10-18 01:51:35 +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-10-18 01:51:35 +03:00
|
|
|
|
|
|
|
|
|
|
|
module Duckling.Duration.AR.Tests
|
|
|
|
( tests
|
|
|
|
) where
|
|
|
|
|
|
|
|
import Data.String
|
|
|
|
import Prelude
|
|
|
|
import Test.Tasty
|
|
|
|
|
|
|
|
import Duckling.Dimensions.Types
|
|
|
|
import Duckling.Duration.AR.Corpus
|
|
|
|
import Duckling.Testing.Asserts
|
|
|
|
|
|
|
|
tests :: TestTree
|
|
|
|
tests = testGroup "AR Tests"
|
2020-09-28 11:31:58 +03:00
|
|
|
[ makeCorpusTest [Seal Duration] corpus
|
2017-10-18 01:51:35 +03:00
|
|
|
]
|