add tests for validating changes to auto-generated jiradata files

This commit is contained in:
Cory Bennett
2017-10-28 12:19:36 -07:00
parent 90007771bf
commit 41d1a7c9a1
3 changed files with 20 additions and 11 deletions
+15
View File
@@ -0,0 +1,15 @@
package jiradata
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestAttachmentID(t *testing.T) {
// this is because schema is wrong, defaults to type `int`, so we manually change it
// to `string`. If the jiradata is regenerated we need to manually make the change
// again to include:
// ID IntOrString `json:"id,omitempty" yaml:"id,omitempty"`
assert.IsType(t, IntOrString(0), Attachment{}.ID)
}