mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2026-03-16 17:54:07 +01:00
24 lines
338 B
Go
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) {
|
|
|
|
}
|