We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f2aec9 commit 1620415Copy full SHA for 1620415
packages/contracts-bedrock/test/governance/ProposalValidator.t.sol
@@ -887,6 +887,15 @@ contract ProposalValidator_CanApproveProposal_Test is ProposalValidator_Init {
887
}
888
889
890
+/// @title ProposalValidator_Version_Test
891
+/// @notice Tests for the version function
892
+contract ProposalValidator_Version_Test is ProposalValidator_Init {
893
+ function test_version_succeeds() public {
894
+ string memory versionString = validator.version();
895
+ assertEq(versionString, "1.0.0-beta.1");
896
+ }
897
+}
898
+
899
/// @title ProposalValidator_Setters_Test
900
/// @notice Tests for setter functions
901
contract ProposalValidator_Setters_Test is ProposalValidator_Init {
0 commit comments