File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed
testlib/Test/Cardano/Ledger/Dijkstra Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -108,6 +108,7 @@ library testlib
108108 Test.Cardano.Ledger.Dijkstra.Era
109109 Test.Cardano.Ledger.Dijkstra.ImpTest
110110 Test.Cardano.Ledger.Dijkstra.TreeDiff
111+ Test.Cardano.Ledger.Dijkstra.TxInfoSpec
111112
112113 other-modules : Paths_cardano_ledger_dijkstra
113114 default-language : Haskell2010
Original file line number Diff line number Diff line change 1+ {-# LANGUAGE AllowAmbiguousTypes #-}
2+ {-# LANGUAGE DataKinds #-}
3+ {-# LANGUAGE FlexibleContexts #-}
4+ {-# LANGUAGE FlexibleInstances #-}
5+ {-# LANGUAGE OverloadedStrings #-}
6+ {-# LANGUAGE ScopedTypeVariables #-}
7+
8+ module Test.Cardano.Ledger.Dijkstra.TxInfoSpec (spec ) where
9+
10+ import Test.Cardano.Ledger.Common
11+ import Test.Cardano.Ledger.Conway.Genesis ()
12+
13+ spec :: Spec
14+ spec = do
15+ describe " TxInfo" $ do
16+ pure () -- TODO
You can’t perform that action at this time.
0 commit comments