Skip to content

Commit

Permalink
Add unittest (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
TAGraves authored Feb 23, 2023
1 parent 709e47c commit 71e4433
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
{ "$ref": "#/$defs/frameworks/JavaScript/Playwright" },
{ "$ref": "#/$defs/frameworks/PHP/PHPUnit" },
{ "$ref": "#/$defs/frameworks/Python/pytest" },
{ "$ref": "#/$defs/frameworks/Python/unittest" },
{ "$ref": "#/$defs/frameworks/Ruby/Cucumber" },
{ "$ref": "#/$defs/frameworks/Ruby/minitest" },
{ "$ref": "#/$defs/frameworks/Ruby/RSpec" },
Expand Down Expand Up @@ -136,6 +137,14 @@
"language": { "type": "string", "enum": ["Python"] },
"kind": { "type": "string", "enum": ["pytest"] }
}
},
"unittest": {
"type": "object",
"required": ["language", "kind"],
"properties": {
"language": { "type": "string", "enum": ["Python"] },
"kind": { "type": "string", "enum": ["unittest"] }
}
}
},
"Ruby": {
Expand Down

0 comments on commit 71e4433

Please sign in to comment.