mirror of
https://github.com/Threnklyn/jira.git
synced 2026-05-18 20:23:28 +02:00
16 lines
444 B
Go
16 lines
444 B
Go
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)
|
|
}
|