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