-
Notifications
You must be signed in to change notification settings - Fork 328
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add test to make sure IssueType.Fields does not disappear on regenera…
…tion
- Loading branch information
Showing
2 changed files
with
15 additions
and
1 deletion.
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
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package jiradata | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestIssueTypeFields(t *testing.T) { | ||
// this is because schema is wrong, missing the 'Fields' arguments, so we manually add it. | ||
// If the jiradata is regenerated we need to manually make the change again to include: | ||
// Fields FieldMetaMap `json:"fields,omitempty" yaml:"fields,omitempty"` | ||
assert.IsType(t, FieldMetaMap{}, IssueType{}.Fields) | ||
} |