Skip to content

Commit

Permalink
feat: more test data
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasjarosch committed Feb 9, 2024
1 parent b3057ea commit a800e6c
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 1 deletion.
3 changes: 2 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ module github.com/lukasjarosch/skipper
go 1.21

require (
github.com/davecgh/go-spew v1.1.1
github.com/google/uuid v1.6.0
github.com/stretchr/testify v1.8.4
gopkg.in/yaml.v3 v3.0.1
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/kr/pretty v0.2.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/kr/pretty v0.2.0 h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs=
github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
Expand Down
2 changes: 2 additions & 0 deletions testdata/classes/food.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
food:
required: always
2 changes: 2 additions & 0 deletions testdata/classes/food/common.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
common:
should_be_tasty: true
17 changes: 17 additions & 0 deletions testdata/classes/people/jane.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
jane:
name: Jane
age: 30
gender: female
occupation: Software Engineer
interests:
- Hiking
- Photography
- Cooking
address:
street: 456 Elm Street
city: Towndale
state: State
country: Country
contact:
email: [email protected]
phone: "+1098765432"

0 comments on commit a800e6c

Please sign in to comment.