mirror of
https://codeberg.org/scip/anydb.git
synced 2025-12-16 20:10:59 +01:00
- added man command - added unit tests - fixed import+export file parameters (now -o and -r respectively) - added README + License - added ci pipelines
21 lines
286 B
Go
21 lines
286 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/rogpeppe/go-internal/testscript"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
os.Exit(testscript.RunMain(m, map[string]func() int{
|
|
"anydb": Main,
|
|
}))
|
|
}
|
|
|
|
func TestAnydb(t *testing.T) {
|
|
testscript.Run(t, testscript.Params{
|
|
Dir: "t",
|
|
})
|
|
}
|