Commit 8b966efd authored by Mael NICOLAS's avatar Mael NICOLAS

Added Eq instance for ZonedTime

parent 64f9229a
......@@ -134,6 +134,7 @@ tests:
- gargantext
- hspec
- QuickCheck
- quickcheck-instances
- time
- parsec
- duckling
......
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE StandaloneDeriving #-}
module Parsers.Types where
import Gargantext.Prelude
import Test.QuickCheck
import Test.QuickCheck.Instances()
import Text.Parsec.Pos
import Text.Parsec.Error (ParseError(..), Message(..), newErrorMessage)
import Text.Parsec.Error (ParseError, Message(..), newErrorMessage)
import Data.Time.LocalTime (ZonedTime (..))
import Data.Eq (Eq(..))
deriving instance Eq ZonedTime
instance Arbitrary Message where
arbitrary = do
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment