Files
woodpecker/test/integration/blocks/secret.go
Anbraten ac43237b4e next
2026-02-24 16:52:59 +01:00

24 lines
338 B
Go

package blocks
import "testing"
type TestSecret struct {
repo *TestRepo
}
func NewTestSecret(repo *TestRepo) *TestSecret {
return &TestSecret{repo: repo}
}
func (s *TestSecret) Create(t *testing.T, key, value string) {
}
func (s *TestSecret) Update(t *testing.T, value string) {
}
func (s *TestSecret) Delete(t *testing.T) {
}