diff --git a/eras/dijkstra/impl/cardano-ledger-dijkstra.cabal b/eras/dijkstra/impl/cardano-ledger-dijkstra.cabal index 367807f5715..d23cde42485 100644 --- a/eras/dijkstra/impl/cardano-ledger-dijkstra.cabal +++ b/eras/dijkstra/impl/cardano-ledger-dijkstra.cabal @@ -118,6 +118,7 @@ library testlib Test.Cardano.Ledger.Dijkstra.Imp.UtxowSpec Test.Cardano.Ledger.Dijkstra.ImpTest Test.Cardano.Ledger.Dijkstra.TreeDiff + Test.Cardano.Ledger.Dijkstra.TxInfoSpec other-modules: Paths_cardano_ledger_dijkstra default-language: Haskell2010 diff --git a/eras/dijkstra/impl/testlib/Test/Cardano/Ledger/Dijkstra/TxInfoSpec.hs b/eras/dijkstra/impl/testlib/Test/Cardano/Ledger/Dijkstra/TxInfoSpec.hs new file mode 100644 index 00000000000..720178f4065 --- /dev/null +++ b/eras/dijkstra/impl/testlib/Test/Cardano/Ledger/Dijkstra/TxInfoSpec.hs @@ -0,0 +1,16 @@ +{-# LANGUAGE AllowAmbiguousTypes #-} +{-# LANGUAGE DataKinds #-} +{-# LANGUAGE FlexibleContexts #-} +{-# LANGUAGE FlexibleInstances #-} +{-# LANGUAGE OverloadedStrings #-} +{-# LANGUAGE ScopedTypeVariables #-} + +module Test.Cardano.Ledger.Dijkstra.TxInfoSpec (spec) where + +import Test.Cardano.Ledger.Common +import Test.Cardano.Ledger.Conway.Genesis () + +spec :: Spec +spec = do + describe "TxInfo" $ do + pure () -- TODO