File tree Expand file tree Collapse file tree 3 files changed +34
-0
lines changed
testlib/Test/Cardano/Ledger/Allegra Expand file tree Collapse file tree 3 files changed +34
-0
lines changed Original file line number Diff line number Diff line change 10
10
* Deprecate ` TimelockConstr `
11
11
* Rename ` atbrTxFee ` to ` atbrFee ` for consistency
12
12
13
+ ### ` testlib `
14
+
15
+ * Added ` Era ` module with ` AllegraEraTest ` class
16
+
13
17
## 1.7.0.0
14
18
15
19
* Add ` DecCBOR ` instances for:
Original file line number Diff line number Diff line change @@ -89,6 +89,7 @@ library testlib
89
89
Test.Cardano.Ledger.Allegra.Binary.Annotator
90
90
Test.Cardano.Ledger.Allegra.Binary.Cddl
91
91
Test.Cardano.Ledger.Allegra.CDDL
92
+ Test.Cardano.Ledger.Allegra.Era
92
93
Test.Cardano.Ledger.Allegra.Imp
93
94
Test.Cardano.Ledger.Allegra.Imp.UtxowSpec
94
95
Test.Cardano.Ledger.Allegra.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.Allegra.Era (
5
+ module Test.Cardano.Ledger.Shelley.Era ,
6
+ AllegraEraTest ,
7
+ ) where
8
+
9
+ import Cardano.Ledger.Allegra
10
+ import Cardano.Ledger.Allegra.Core
11
+ import Cardano.Ledger.Allegra.Scripts
12
+ import Test.Cardano.Ledger.Allegra.Arbitrary ()
13
+ import Test.Cardano.Ledger.Allegra.TreeDiff ()
14
+ import Test.Cardano.Ledger.Era
15
+ import Test.Cardano.Ledger.Shelley.Era
16
+
17
+ class
18
+ ( ShelleyEraTest era
19
+ , AllegraEraTxBody era
20
+ , AllegraEraTxAuxData era
21
+ , AllegraEraScript era
22
+ ) =>
23
+ AllegraEraTest era
24
+
25
+ instance EraTest AllegraEra
26
+
27
+ instance ShelleyEraTest AllegraEra
28
+
29
+ instance AllegraEraTest AllegraEra
You can’t perform that action at this time.
0 commit comments