treasurer/payway/pws_test.go
2023-05-16 19:21:56 +03:00

20 lines
349 B
Go

package payway
import (
"fmt"
"testing"
"github.com/themakers/bdd"
)
func TestPWs(t *testing.T) {
//ctx := context.Background()
bdd.Scenario(t, "add payways", func(t *testing.T, runid string) {
bdd.Test(t, "create pwmanager", func() {
//pm, err := New(ctx, &fk.FreeKassa{})
//assert.NoError(t, err)
fmt.Println("pws0")
})
})
}