aboutsummaryrefslogtreecommitdiff
path: root/Types/Test.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Types/Test.hs')
-rw-r--r--Types/Test.hs9
1 files changed, 6 insertions, 3 deletions
diff --git a/Types/Test.hs b/Types/Test.hs
index 50c460f50..0179474b4 100644
--- a/Types/Test.hs
+++ b/Types/Test.hs
@@ -1,6 +1,7 @@
{- git-annex test data types.
-
- Copyright 2011-2017 Joey Hess <id@joeyh.name>
+ - Copyright 2022 Benjamin Barenblat <bbarenblat@gmail.com>
-
- Licensed under the GNU GPL version 3 or higher.
-}
@@ -19,13 +20,15 @@ data TestOptions = TestOptions
, internalData :: CmdParams
}
-instance Monoid TestOptions where
- mempty = TestOptions mempty False False mempty
- mappend a b = TestOptions
+instance Semigroup TestOptions where
+ a <> b = TestOptions
(tastyOptionSet a <> tastyOptionSet b)
(keepFailuresOption a || keepFailuresOption b)
(fakeSsh a || fakeSsh b)
(internalData a <> internalData b)
+instance Monoid TestOptions where
+ mempty = TestOptions mempty False False mempty
+
type TestRunner = TestOptions -> IO ()