20 lines
349 B
Go
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")
|
|
})
|
|
})
|
|
}
|