mirror of
https://github.com/facebook/duckling.git
synced 2024-11-28 16:54:59 +03:00
7889f396f3
Summary: Pull Request resolved: https://github.com/facebook/duckling/pull/533 In recent versions of Data.Some the name of the constructor, `This` has changed name to `Some`. This has become rather problematic for us to migrate so we're just going to remove the dependency. The meat of this diff is adding the type `Seal` to `Duckling.Types`. That type replaces `Some`. Reviewed By: pepeiborra Differential Revision: D23929459 fbshipit-source-id: 8ff4146ecba4f1119a17899961b2d877547f6e4f
24 lines
509 B
Haskell
24 lines
509 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.
|
|
|
|
|
|
module Duckling.Duration.AR.Tests
|
|
( tests
|
|
) where
|
|
|
|
import Data.String
|
|
import Prelude
|
|
import Test.Tasty
|
|
|
|
import Duckling.Dimensions.Types
|
|
import Duckling.Duration.AR.Corpus
|
|
import Duckling.Testing.Asserts
|
|
|
|
tests :: TestTree
|
|
tests = testGroup "AR Tests"
|
|
[ makeCorpusTest [Seal Duration] corpus
|
|
]
|