mirror of
https://github.com/asticode/go-astiav.git
synced 2025-09-27 04:26:30 +08:00
12 lines
168 B
Go
12 lines
168 B
Go
package astiav
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestMediaType(t *testing.T) {
|
|
require.Equal(t, "video", MediaTypeVideo.String())
|
|
}
|