Skip to content

Commit f568416

Browse files
committed
Add TxInfoSpec for Dijkstra
1 parent 9f70386 commit f568416

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
@@ -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
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)