1
1
mirror of https://github.com/wader/fq.git synced 2024-11-25 05:55:43 +03:00
fq/format/fqtest_test.go

17 lines
302 B
Go
Raw Normal View History

2020-06-08 03:29:51 +03:00
package format_test
import (
"flag"
2020-06-08 03:29:51 +03:00
"testing"
_ "github.com/wader/fq/format/all"
"github.com/wader/fq/pkg/fqtest"
"github.com/wader/fq/pkg/interp"
2020-06-08 03:29:51 +03:00
)
var update = flag.Bool("update", false, "Update tests")
2022-12-03 21:00:47 +03:00
func TestFormats(t *testing.T) {
fqtest.TestPath(t, interp.DefaultRegistry, *update)
2020-06-08 03:29:51 +03:00
}