Skip to content

Commit

Permalink
update test to include cases with missing tags
Browse files Browse the repository at this point in the history
  • Loading branch information
shaheerk94 committed Dec 19, 2024
1 parent f5a901d commit 2122d8b
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 42 deletions.
61 changes: 61 additions & 0 deletions test/invalid-seq-json/time-missing-type-and-tag.seq.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
"id": "time_missing_type",
"metadata": {},
"steps": [
{
"args": [
{ "type": "number", "value": 30 }
],
"description": "Epoch-relative activate step for test.mod into engine 2 with missing time type.",
"engine": 2,
"epoch": "TEST_EPOCH",
"sequence": "d:/eng/test.mod",
"time": { "tag": "00:00:01.000" },
"type": "activate"
},
{
"args": [
{ "type": "number", "value": 30 }
],
"description": "Command-relative activate step for test.mod into engine 2 with missing time tag.",
"engine": 2,
"epoch": "TEST_EPOCH",
"sequence": "d:/eng/test.mod",
"time": { "type": "COMMAND_RELATIVE" },
"type": "activate"
},
{
"args": [
{ "type": "number", "value": 30 }
],
"description": "Absolute activate step for test.mod into engine 2 with missing time tag.",
"engine": 2,
"epoch": "TEST_EPOCH",
"sequence": "d:/eng/test.mod",
"time": { "type": "ABSOLUTE" },
"type": "activate"
},
{
"args": [
{ "type": "number", "value": 30 }
],
"description": "Block-relative activate step for test.mod into engine 2 with missing time tag.",
"engine": 2,
"epoch": "TEST_EPOCH",
"sequence": "d:/eng/test.mod",
"time": { "type": "BLOCK_RELATIVE" },
"type": "activate"
},
{
"args": [
{ "type": "number", "value": 30 }
],
"description": "Epoch-relative activate step for test.mod into engine 2 with missing time tag.",
"engine": 2,
"epoch": "TEST_EPOCH",
"sequence": "d:/eng/test.mod",
"time": { "type": "EPOCH_RELATIVE" },
"type": "activate"
}
]
}
42 changes: 0 additions & 42 deletions test/invalid-seq-json/time-missing-type.seq.json

This file was deleted.

0 comments on commit 2122d8b

Please sign in to comment.