mirror of
https://github.com/facebook/duckling.git
synced 2024-12-01 08:19:36 +03:00
380457db8f
Summary: Closes https://github.com/facebook/duckling/pull/125 Reviewed By: panagosg7 Differential Revision: D6614574 Pulled By: patapizza fbshipit-source-id: 054ed04e0cc1cf79be31340ebb8b7fea3bc67f57
47 lines
1.2 KiB
Haskell
47 lines
1.2 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. An additional grant
|
|
-- of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
|
|
module Duckling.Volume.Tests
|
|
( tests
|
|
) where
|
|
|
|
import Data.String
|
|
import Prelude
|
|
import Test.Tasty
|
|
|
|
import qualified Duckling.Volume.AR.Tests as AR
|
|
import qualified Duckling.Volume.EN.Tests as EN
|
|
import qualified Duckling.Volume.ES.Tests as ES
|
|
import qualified Duckling.Volume.FR.Tests as FR
|
|
import qualified Duckling.Volume.GA.Tests as GA
|
|
import qualified Duckling.Volume.HR.Tests as HR
|
|
import qualified Duckling.Volume.IT.Tests as IT
|
|
import qualified Duckling.Volume.KO.Tests as KO
|
|
import qualified Duckling.Volume.NL.Tests as NL
|
|
import qualified Duckling.Volume.PT.Tests as PT
|
|
import qualified Duckling.Volume.RO.Tests as RO
|
|
import qualified Duckling.Volume.RU.Tests as RU
|
|
import qualified Duckling.Volume.TR.Tests as TR
|
|
|
|
tests :: TestTree
|
|
tests = testGroup "Volume Tests"
|
|
[ AR.tests
|
|
, EN.tests
|
|
, ES.tests
|
|
, FR.tests
|
|
, GA.tests
|
|
, HR.tests
|
|
, IT.tests
|
|
, KO.tests
|
|
, NL.tests
|
|
, PT.tests
|
|
, RO.tests
|
|
, RU.tests
|
|
, TR.tests
|
|
]
|