mirror of https://github.com/ory/kratos
18 lines
393 B
Go
18 lines
393 B
Go
// Copyright © 2023 Ory Corp
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package testhelpers
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/ory/kratos/driver/config"
|
|
)
|
|
|
|
func StrategyEnable(t *testing.T, c *config.Config, strategy string, enable bool) {
|
|
ctx := context.Background()
|
|
c.MustSet(ctx, fmt.Sprintf("%s.%s.enabled", config.ViperKeySelfServiceStrategyConfig, strategy), enable)
|
|
}
|