Skip to content

Apply the spec naming conventions to plutus-core/untyped-plutus-core/testlib #7133

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

Merged
merged 4 commits into from
Jun 6, 2025

Conversation

Unisay
Copy link
Contributor

@Unisay Unisay commented Jun 5, 2025

Closes #7041

Before:

plutus-core/untyped-plutus-core/testlib
├── Analysis
│   ├── Lib.hs
│   └── Spec.hs
├── DeBruijn
│   ├── FlatNatWord.hs
│   ├── Lib
│   ├── Scope.hs
│   ├── Spec.hs
│   └── UnDeBruijnify.hs
├── Evaluation
│   ├── Builtins
│   │   ├── Bitwise
│   │   │   ├── CIP0122.hs
│   │   │   └── CIP0123.hs
│   │   ├── BLS12_381
│   │   │   ├── TestClasses.hs
│   │   │   └── Utils.hs
│   │   ├── BLS12_381.hs
│   │   ├── Common.hs
│   │   ├── Conversion.hs
│   │   ├── Costing.hs
│   │   ├── Definition.hs
│   │   ├── Integer
│   │   │   └── ExpModInteger.hs
│   │   ├── MakeRead.hs
│   │   └── SignatureVerification.hs
│   ├── Builtins.hs
│   ├── Debug.hs
│   ├── FreeVars.hs
│   ├── Golden.hs
│   ├── Helpers.hs
│   ├── Machines.hs
│   └── Regressions.hs
├── Flat
│   └── Spec.hs
├── Generators.hs
├── Scoping
│   └── Spec.hs
└── Transform
    ├── CaseOfCase
    │   └── Test.hs
    ├── Inline
    │   └── Spec.hs
    ├── Simplify
    │   └── Lib.hs
    └── Simplify.hs

15 directories, 32 files

After:

plutus-core/untyped-plutus-core/testlib
├── Analysis
│   ├── Lib.hs
│   └── Spec.hs
├── DeBruijn
│   ├── FlatNatWord.hs
│   ├── Lib
│   ├── Scope.hs
│   ├── Spec.hs
│   └── UnDeBruijnify.hs
├── Evaluation
│   ├── Builtins
│   │   ├── Bitwise
│   │   │   ├── CIP0122.hs
│   │   │   └── CIP0123.hs
│   │   ├── BLS12_381
│   │   │   ├── TestClasses.hs
│   │   │   └── Utils.hs
│   │   ├── BLS12_381.hs
│   │   ├── Common.hs
│   │   ├── Conversion.hs
│   │   ├── Costing.hs
│   │   ├── Definition.hs
│   │   ├── Integer
│   │   │   └── ExpModInteger.hs
│   │   ├── MakeRead.hs
│   │   └── SignatureVerification.hs
│   ├── Builtins.hs
│   ├── Debug.hs
│   ├── FreeVars.hs
│   ├── Golden.hs
│   ├── Helpers.hs
│   ├── Machines.hs
│   └── Regressions.hs
├── Flat
│   └── Spec.hs
├── Generators
│   ├── Lib.hs
│   └── Spec.hs
├── Scoping
│   └── Spec.hs
└── Transform
    ├── CaseOfCase
    │   └── Spec.hs
    ├── Inline
    │   └── Spec.hs
    └── Simplify
        ├── Lib.hs
        └── Spec.hs

Diff
image

@Unisay Unisay requested review from zliu41 and zeme-wana June 5, 2025 10:15
@Unisay Unisay self-assigned this Jun 5, 2025
@Unisay Unisay temporarily deployed to github-pages June 5, 2025 10:15 — with GitHub Actions Inactive
@Unisay Unisay added the No Changelog Required Add this to skip the Changelog Check label Jun 5, 2025
@Unisay Unisay merged commit 517fc37 into master Jun 6, 2025
7 of 8 checks passed
@Unisay Unisay deleted the yura/spec-naming branch June 6, 2025 13:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
No Changelog Required Add this to skip the Changelog Check
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Apply a consistent spec naming convention to the untyped-plutus-core tests.
2 participants