Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

All names are printed with their unique values by default. #5972

Merged
merged 4 commits into from
Jul 12, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore: explicit imports
  • Loading branch information
Unisay committed Jul 12, 2024
commit 96e0f335b7c1ceda0986011c3ee08b4b1ec823ac
5 changes: 5 additions & 0 deletions plutus-core/plutus-core/test/Names/Spec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,10 @@ test_rebindCapturedVariable = testCase "rebindCapturedVariable" do

[typeL1, typeL2] @?= [typeR1, typeR2]

prop_printing_parsing_roundtrip :: TestTree
prop_printing_parsing_roundtrip = testCase "Print-parse roundtrip" do
tripping

test_names :: TestTree
test_names =
testGroup
Expand All @@ -191,4 +195,5 @@ test_names =
, test_alphaEquality
, test_rebindShadowedVariable
, test_rebindCapturedVariable
, prop_printing_parsing_roundtrip
]