File tree Expand file tree Collapse file tree 3 files changed +32
-0
lines changed
testlib/Test/Cardano/Ledger/Mary Expand file tree Collapse file tree 3 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 8
8
* Expose constructor ` MkMaryTxBody `
9
9
* Add default implementation for ` mintValueTxBodyF `
10
10
11
+ ### ` testlib `
12
+
13
+ * Added ` Era ` module with ` MaryEraTest ` class
14
+
11
15
## 1.8.0.0
12
16
13
17
* Add ` DecCBOR ` instance for ` MaryTxBody `
Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ library testlib
100
100
Test.Cardano.Ledger.Mary.Binary.Annotator
101
101
Test.Cardano.Ledger.Mary.Binary.Cddl
102
102
Test.Cardano.Ledger.Mary.CDDL
103
+ Test.Cardano.Ledger.Mary.Era
103
104
Test.Cardano.Ledger.Mary.Imp
104
105
Test.Cardano.Ledger.Mary.Imp.UtxoSpec
105
106
Test.Cardano.Ledger.Mary.ImpTest
Original file line number Diff line number Diff line change
1
+ {-# LANGUAGE UndecidableSuperClasses #-}
2
+ {-# OPTIONS_GHC -Wno-orphans #-}
3
+
4
+ module Test.Cardano.Ledger.Mary.Era (
5
+ module Test.Cardano.Ledger.Allegra.Era ,
6
+ MaryEraTest ,
7
+ ) where
8
+
9
+ import Cardano.Ledger.Mary
10
+ import Cardano.Ledger.Mary.Core
11
+ import Test.Cardano.Ledger.Allegra.Era
12
+ import Test.Cardano.Ledger.Mary.Arbitrary ()
13
+ import Test.Cardano.Ledger.Mary.TreeDiff ()
14
+
15
+ class
16
+ ( AllegraEraTest era
17
+ , MaryEraTxBody era
18
+ ) =>
19
+ MaryEraTest era
20
+
21
+ instance EraTest MaryEra
22
+
23
+ instance ShelleyEraTest MaryEra
24
+
25
+ instance AllegraEraTest MaryEra
26
+
27
+ instance MaryEraTest MaryEra
You can’t perform that action at this time.
0 commit comments