mirror of
https://github.com/facebook/duckling.git
synced 2024-11-28 08:34:46 +03:00
975489fed6
Summary: Pull Request resolved: https://github.com/facebook/duckling/pull/272 Reviewed By: chinmay87 Differential Revision: D12955290 Pulled By: patapizza fbshipit-source-id: 671ee50c92c031762aa147dc6bd98f374693ba6b
36 lines
948 B
Haskell
36 lines
948 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.Email.Tests
|
|
( tests
|
|
) where
|
|
|
|
import Data.String
|
|
import Prelude
|
|
import Test.Tasty
|
|
|
|
import Duckling.Dimensions.Types
|
|
import Duckling.Email.Corpus
|
|
import Duckling.Testing.Asserts
|
|
import qualified Duckling.Email.DE.Tests as DE
|
|
import qualified Duckling.Email.EN.Tests as EN
|
|
import qualified Duckling.Email.FR.Tests as FR
|
|
import qualified Duckling.Email.IS.Tests as IS
|
|
import qualified Duckling.Email.IT.Tests as IT
|
|
|
|
tests :: TestTree
|
|
tests = testGroup "Email Tests"
|
|
[ makeCorpusTest [This Email] corpus
|
|
, makeNegativeCorpusTest [This Email] negativeCorpus
|
|
, DE.tests
|
|
, EN.tests
|
|
, FR.tests
|
|
, IS.tests
|
|
, IT.tests
|
|
]
|