Skip to content

Commit

Permalink
add a new test package (should trigger index prerelease)
Browse files Browse the repository at this point in the history
  • Loading branch information
kMutagene committed Mar 18, 2024
1 parent b5b019b commit de3e5c3
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions StagingArea/test/[email protected]
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
(*
---
Name: test
MajorVersion: 2
MinorVersion: 0
PatchVersion: 1
Publish: false
Summary: this package is here for testing purposes only.
Description: this package is here for testing purposes only.
Authors:
- FullName: John Doe
Email: [email protected]
Affiliation: University of Nowhere
AffiliationLink: https://nowhere.edu
- FullName: Jane Doe
Email: [email protected]
Affiliation: University of Somewhere
AffiliationLink: https://somewhere.edu
Tags:
- Name: validation
- Name: my-package
- Name: thing
ReleaseNotes: "add authors and tags for further testing"
---
*)

// this file is intended for testing purposes only.
printfn "If you can read this in your console, you successfully executed test package v2.0.1!"

#r "nuget: ARCExpect, 1.0.1"

open ARCExpect
open Expecto

let validationCases = testList "test" [
test "yes" {Expect.equal 1 1 "yes"}
]

validationCases
|> Execute.ValidationPipeline(
basePath = System.Environment.CurrentDirectory,
packageName = "test"
)

0 comments on commit de3e5c3

Please sign in to comment.