mirror of
https://github.com/facebook/duckling.git
synced 2025-01-06 04:53:13 +03:00
d3d3703015
Summary: Time dimension for Hebrew. Commented out the failing tests that actually also fail in Clojure. Reviewed By: JonCoens Differential Revision: D4970308 fbshipit-source-id: b455142
23 lines
590 B
Haskell
23 lines
590 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.
|
|
|
|
module Duckling.Time.HE.Tests
|
|
( tests ) where
|
|
|
|
import Data.String
|
|
import Prelude
|
|
import Test.Tasty
|
|
|
|
import Duckling.Dimensions.Types
|
|
import Duckling.Time.HE.Corpus
|
|
import Duckling.Testing.Asserts
|
|
|
|
tests :: TestTree
|
|
tests = testGroup "HE Tests"
|
|
[ makeCorpusTest [This Time] corpus
|
|
]
|