-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
374 additions
and
377 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -112,9 +112,9 @@ let tests_Spreadsheet = testList "Template_Spreadsheet" [ | |
Expect.equal tags.[4] expectedLast "Last TAG should be equal" | ||
|
||
Expect.equal authors.Length 5 "Should be 5 authors" | ||
let expectedFirst = Person.create(FirstName = "Heinrich", LastName = "Weil", MidInitials = "L",ORCID = "0000-0003-1945-6342",Email = "[email protected]") | ||
let expectedFirst = Person.create(firstName = "Heinrich", lastName = "Weil", MidInitials = "L",ORCID = "0000-0003-1945-6342",Email = "[email protected]") | ||
Expect.equal authors.[0] expectedFirst "First AUTHOR should be equal" | ||
let expectedFourth = Person.create(FirstName = "Martin", LastName = "Kuhl") | ||
let expectedFourth = Person.create(firstName = "Martin", lastName = "Kuhl") | ||
Expect.equal authors.[3] expectedFourth "Fourth AUTHOR should be equal" | ||
testCase "complete roundabout" <| fun _ -> | ||
let templateInfo,ers,tags,authors = Spreadsheet.Template.fromMetadataSheet TestObjects.Spreadsheet.Template.templateMetadata | ||
|
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
Oops, something went wrong.