mirror of
https://github.com/asticode/go-astiav.git
synced 2025-10-06 00:26:52 +08:00
13 lines
209 B
Go
13 lines
209 B
Go
package astiav_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/asticode/go-astiav"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestPictureType(t *testing.T) {
|
|
require.Equal(t, "I", astiav.PictureTypeI.String())
|
|
}
|