2017-12-05 03:37:47 +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-12-05 03:37:47 +03:00
|
|
|
|
|
|
|
|
|
|
|
module Duckling.Time.EL.Tests
|
|
|
|
( tests ) where
|
|
|
|
|
|
|
|
import Data.String
|
|
|
|
import Prelude
|
|
|
|
import Test.Tasty
|
|
|
|
|
|
|
|
import Duckling.Dimensions.Types
|
|
|
|
import Duckling.Testing.Asserts
|
|
|
|
import Duckling.Time.EL.Corpus
|
|
|
|
|
|
|
|
tests :: TestTree
|
|
|
|
tests = testGroup "EL Tests"
|
2020-09-28 11:31:58 +03:00
|
|
|
[ makeCorpusTest [Seal Time] corpus
|
2017-12-05 03:37:47 +03:00
|
|
|
]
|