sspec comes from Solidity SPECification
. Smart contract repositories often lack detailed or even general descriptions of what the repo and its smart contracts do. Only AIs can understand what's going on (not always). This tool was created to improve development and review simplicity.
This is a reimagining of scopelint
's spec
command, which generates specifications for source smart contracts based on test files and test names.
This functionality helps not only with understanding your own test suites, but also with reviewing other repositories.
Built using slang.
Install via npm or yarn:
npm i @0xcompose/sspec --save-dev
yarn add @0xcompose/sspec --dev
There are three valid naming conventions for unit testing (according to Foundry best practices):
-
Testing whole contract:
- Test file:
SourceContractName.t.sol
- Test contract:
SourceContractNameTest
- Test file:
-
Testing single function:
- Test file:
SourceContractName.sourceFunctionName.t.sol
- Test contract:
SourceFunctionName
(in PascalCase)
- Test file:
-
Testing features:
- Test file:
SourceContractName.FeatureName.t.sol
- Test contract:
FeatureName
- Note: Feature can be anything, including integration tests
- Test file: