-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update to ARCTokenisation 5.0 * add baseline Validation for ARCs add baseline Validation for ARCs in case no specific validation package is referenced * Adress the changes requested in #93 - Rename BaselineValidation -> ARCSpecification - Rename isaLight -> V2_Draft - Outsource the Expect functions from V2_Draft to the ValidateAPI - Remove metadata section from ARCSpecification - Remove the confusing checkForParam function - Revert unneeded Changes to the arc-validate.fsproj * Add arc Structure for testing purposes * Update .gitignore Add Mac specific DS_Store files * Add test for ARCSpecification V2_Draft Add test for ARCSpecification V2_Draft. * Update ARCSpecification.fs Fix test path * Adress changes requested in #93 - Move ARCSpecification into ARCExpect - Move Tests and relevant test files in respect - Rename ARCValidate.ARCSpecification. V2_Draft. testCases -> ARCExpect.ARCSpecification. V2_Draft .validationCases - Remove internal keyword from V2_Draft modules - Fixed typos * Adress changes requested in #93 - Fix Error Message in tests - Change Usage of Validation Pipeline to its components - Removed redundant references in fsproj * Remove redundant code as seen in #93
- Loading branch information
1 parent
b283580
commit 4d70e78
Showing
22 changed files
with
641 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
module ARCSpecification | ||
|
||
open Expecto | ||
|
||
|
||
[<Tests>] | ||
let tests = | ||
testList "ARCValidationPackage tests" [ | ||
test "V2_Draft" { | ||
|
||
let testPath: string = @"../../../../fixtures/arcs/testingArc" | ||
|
||
let cases = ARCExpect.ARCSpecification.V2_Draft.validationCases testPath | ||
|
||
let runSummary = ARCExpect.Execute.Validation cases | ||
|
||
//false None (ParseResults<ARCValidate.CLIArguments.ValidateArgs>.Empty) | ||
Expect.isTrue | ||
runSummary.successful | ||
"The validation cases for ARCSpecification.V2_Draft do not validate a structurally correct ARC." | ||
|
||
} | ||
|
||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
Binary file not shown.
Empty file.
Binary file not shown.
Empty file.
Empty file.
Empty file.
Binary file not shown.
Empty file.
Empty file.
Empty file.