mirror of
https://github.com/asticode/go-astiav.git
synced 2025-10-06 08:37:06 +08:00
Added Classer + now logs returns a Classer + tests are now done in astiav package
This commit is contained in:
@@ -1,15 +1,14 @@
|
||||
package astiav_test
|
||||
package astiav
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/asticode/go-astiav"
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
func TestInputFormat(t *testing.T) {
|
||||
formatName := "rawvideo"
|
||||
inputFormat := astiav.FindInputFormat(formatName)
|
||||
inputFormat := FindInputFormat(formatName)
|
||||
require.NotNil(t, inputFormat)
|
||||
require.Equal(t, formatName, inputFormat.Name())
|
||||
require.Equal(t, formatName, inputFormat.String())
|
||||
|
Reference in New Issue
Block a user