mirror of
https://github.com/facebook/duckling.git
synced 2024-11-28 08:34:46 +03:00
bf89e34365
Reviewed By: JoelMarcey Differential Revision: D15439223 fbshipit-source-id: c5af3cb06318748142fe503945b38beffadfc28a
44 lines
1.1 KiB
Haskell
44 lines
1.1 KiB
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.
|
|
|
|
|
|
module Duckling.Quantity.Tests
|
|
( tests
|
|
) where
|
|
|
|
import Data.String
|
|
import Prelude
|
|
import Test.Tasty
|
|
|
|
import qualified Duckling.Quantity.AR.Tests as AR
|
|
import qualified Duckling.Quantity.EN.Tests as EN
|
|
import qualified Duckling.Quantity.FR.Tests as FR
|
|
import qualified Duckling.Quantity.HR.Tests as HR
|
|
import qualified Duckling.Quantity.KM.Tests as KM
|
|
import qualified Duckling.Quantity.KO.Tests as KO
|
|
import qualified Duckling.Quantity.MN.Tests as MN
|
|
import qualified Duckling.Quantity.NL.Tests as NL
|
|
import qualified Duckling.Quantity.PT.Tests as PT
|
|
import qualified Duckling.Quantity.RO.Tests as RO
|
|
import qualified Duckling.Quantity.RU.Tests as RU
|
|
import qualified Duckling.Quantity.ZH.Tests as ZH
|
|
|
|
tests :: TestTree
|
|
tests = testGroup "Quantity Tests"
|
|
[ AR.tests
|
|
, EN.tests
|
|
, FR.tests
|
|
, HR.tests
|
|
, KM.tests
|
|
, KO.tests
|
|
, MN.tests
|
|
, NL.tests
|
|
, PT.tests
|
|
, RO.tests
|
|
, RU.tests
|
|
, ZH.tests
|
|
]
|