Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions nix/project.nix
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,8 @@ let
plutus-ledger-api.components.tests.plutus-ledger-api-plugin-test.testFlags = [ "--no-create" ];
plutus-ledger-api.components.tests.plutus-ledger-api-test.testFlags = [ "--no-create" ];
plutus-tx-plugin.components.tests.plutus-tx-plugin-tests.testFlags = [ "--no-create" ];
plutus-tx-plugin.components.tests.assocmap-plugin-tests.testFlags = [ "--no-create" ];
plutus-tx-plugin.components.tests.list-plugin-tests.testFlags = [ "--no-create" ];
plutus-tx-plugin.components.tests.size.testFlags = [ "--no-create" ];
plutus-tx.components.tests.plutus-tx-test.testFlags = [ "--no-create" ];
};
Expand Down
17 changes: 17 additions & 0 deletions plutus-tx-plugin/assocmap-test/Spec.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
module Main (main) where

import AssocMap.Spec qualified as AssocMap

import Test.Tasty (TestTree, defaultMain)
import Test.Tasty.Extras (embed, runTestNested)

main :: IO ()
main = defaultMain tests

tests :: TestTree
tests =
runTestNested
["assocmap-test"]
[ AssocMap.goldenTests
, embed AssocMap.propertyTests
]
Loading
Loading