Skip to content

Commit 747f8c3

Browse files
committed
Add TxInfoSpec for Dijkstra
1 parent a1a6eba commit 747f8c3

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

eras/dijkstra/cardano-ledger-dijkstra.cabal

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ library testlib
117117
Test.Cardano.Ledger.Dijkstra.Imp
118118
Test.Cardano.Ledger.Dijkstra.ImpTest
119119
Test.Cardano.Ledger.Dijkstra.TreeDiff
120+
Test.Cardano.Ledger.Dijkstra.TxInfoSpec
120121

121122
other-modules: Paths_cardano_ledger_dijkstra
122123
default-language: Haskell2010
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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

0 commit comments

Comments
 (0)